
@import '@smb/d42pad-mxgraph/dist/css/mxgraphs.css';
.d42-global-message-wrapper {
  width: 100%;
  position: fixed;
  z-index: 999;
  padding: 0 10px;
  text-align: center;
  pointer-events: none;
  box-sizing: border-box;
  left: 0;
}

.d42-global-message-wrapper-top {
  top: 40px;
}

.d42-global-message-wrapper-bottom {
  bottom: 40px;
}

.fadeMessage-enter, .fadeMessage-appear {
  opacity: 0;
}

.fadeMessage-enter-active, .fadeMessage-appear-active {
  opacity: 1;
  transition: opacity 0.1s cubic-bezier(0, 0, 1, 1);
}

.fadeMessage-exit {
  opacity: 0;
  overflow: hidden;
}

.fadeMessage-exit-active {
  opacity: 0;
  height: 0;
  transition: all 0.3s cubic-bezier(0.34, 0.69, 0.1, 1);
}

.d42-global-message {
  display: inline-block;
  padding: 8px 14px;
  line-height: 1;
  border-radius: 2px;
  border: 1px solid rgb(72, 72, 73);
  margin-bottom: 16px;
  background-color: #373739;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1019607843);
  overflow: hidden;
  pointer-events: auto;
  transition: opacity 0.1s linear;
}

.d42-global-message-content-container {
  display: flex;
  align-items: center;
}

.d42-global-message-icon {
  margin-right: 8px;
}

.d42-global-message-icon .info {
  color: #3c7eff;
}

.d42-global-message-icon .success {
  color: #27c346;
}

.d42-global-message-icon .error {
  color: #f76965;
}

.d42-global-message-icon .warn {
  color: #fa9626;
}

.d42-global-message-content {
  color: rgba(255, 255, 255, 0.9019607843);
  font-size: 14px;
  cursor: default;
} /**
* Copyright (c) 2014 The xterm.js authors. All rights reserved.
* Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
* https://github.com/chjj/term.js
* @license MIT
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* Originally forked from (with the author's permission):
*   Fabrice Bellard's javascript vt100 for jslinux:
*   http://bellard.org/jslinux/
*   Copyright (c) 2011 Fabrice Bellard
*   The original design remains. The terminal itself
*   has been extended to include xterm CSI codes, among
*   other features.
*/
.xterm {
  cursor: text;
  position: relative;
  user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}

.xterm.focus, .xterm:focus {
  outline: none;
}

.xterm .xterm-helpers {
  position: absolute;
  top: 0;
  z-index: 5;
}

.xterm .xterm-helper-textarea {
  padding: 0;
  border: 0;
  margin: 0;
  position: absolute;
  opacity: 0;
  left: -9999em;
  top: 0;
  width: 0;
  height: 0;
  z-index: -5;
  white-space: nowrap;
  overflow: hidden;
  resize: none;
}

.xterm .composition-view {
  background: #000;
  color: #fff;
  display: none;
  position: absolute;
  white-space: nowrap;
  z-index: 1;
}

.xterm .composition-view.active {
  display: block;
}

.xterm .xterm-viewport {
  background-color: #000;
  overflow-y: scroll;
  cursor: default;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
}

.xterm .xterm-screen {
  position: relative;
}

.xterm .xterm-screen canvas {
  position: absolute;
  left: 0;
  top: 0;
}

.xterm .xterm-scroll-area {
  visibility: hidden;
}

.xterm-char-measure-element {
  display: inline-block;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: -9999em;
  line-height: normal;
}

.xterm.enable-mouse-events {
  cursor: default;
}

.xterm.xterm-cursor-pointer, .xterm .xterm-cursor-pointer {
  cursor: pointer;
}

.xterm.column-select.focus {
  cursor: crosshair;
}

.xterm .xterm-accessibility, .xterm .xterm-message {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  color: transparent;
  pointer-events: none;
}

.xterm .live-region {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.xterm-dim {
  opacity: 1 !important;
}

.xterm-underline-1 {
  text-decoration: underline;
}

.xterm-underline-2 {
  text-decoration: double underline;
}

.xterm-underline-3 {
  text-decoration: wavy underline;
}

.xterm-underline-4 {
  text-decoration: dotted underline;
}

.xterm-underline-5 {
  text-decoration: dashed underline;
}

.xterm-overline {
  text-decoration: overline;
}

.xterm-overline.xterm-underline-1 {
  text-decoration: overline underline;
}

.xterm-overline.xterm-underline-2 {
  text-decoration: overline double underline;
}

.xterm-overline.xterm-underline-3 {
  text-decoration: overline wavy underline;
}

.xterm-overline.xterm-underline-4 {
  text-decoration: overline dotted underline;
}

.xterm-overline.xterm-underline-5 {
  text-decoration: overline dashed underline;
}

.xterm-strikethrough {
  text-decoration: line-through;
}

.xterm-screen .xterm-decoration-container .xterm-decoration {
  z-index: 6;
  position: absolute;
}

.xterm-screen .xterm-decoration-container .xterm-decoration.xterm-decoration-top-layer {
  z-index: 7;
}

.xterm-decoration-overview-ruler {
  z-index: 8;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

.xterm-decoration-top {
  z-index: 2;
  position: relative;
}

:root {
  --rct-color-tree-bg: #f6f8fa;
  --rct-color-tree-focus-outline: #0366d6;
  --rct-color-focustree-item-selected-bg: #e8eaed;
  --rct-color-focustree-item-selected-text: inherit;
  --rct-color-focustree-item-focused-border: #0366d6;
  --rct-color-focustree-item-draggingover-bg: #ebf0f4;
  --rct-color-focustree-item-draggingover-color: inherit;
  --rct-color-nonfocustree-item-selected-bg: #e8eaed;
  --rct-color-nonfocustree-item-selected-text: inherit;
  --rct-color-nonfocustree-item-focused-border: #dbdbdb;
  --rct-color-search-highlight-bg: #a2aed2;
  --rct-color-drag-between-line-bg: #0366d6;
  --rct-color-arrow: #9aa5b3;
  --rct-item-height: 22px;
  --rct-color-renaming-input-submitbutton-bg: inherit;
  --rct-color-renaming-input-submitbutton-bg-hover: #0366d6;
  --rct-color-renaming-input-submitbutton-bg-active: #095fc1;
  --rct-color-renaming-input-submitbutton-text: inherit;
  --rct-color-renaming-input-submitbutton-text-hover: #ffffff;
  --rct-color-renaming-input-submitbutton-text-active: #ffffff;
}

.rct-tree-root {
  font-family: sans-serif;
  background-color: var(--rct-color-tree-bg);
  padding: 4px 0;
}

.rct-tree-root-focus {
  outline: 1px solid var(--rct-color-tree-focus-outline);
}

.rct-tree-item-li {
  font-size: 0.8rem;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.rct-tree-item-title-container {
  display: flex;
  align-items: center;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.rct-tree-item-button {
  flex-grow: 1;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  border: none;
  width: 100%;
  height: var(--rct-item-height);
  text-align: left;
  color: inherit;
  outline: none;
}

.rct-tree-item-arrow {
  width: 16px;
}

.rct-tree-item-arrow svg {
  width: 16px;
}

.rct-tree-item-arrow-path {
  fill: var(--rct-color-arrow);
}

.rct-tree-items-container {
  margin: 0;
  padding: 0;
}

.rct-tree-root:not(.rct-tree-root-focus) .rct-tree-item-title-container-selected {
  background-color: var(--rct-color-nonfocustree-item-selected-bg);
  color: var(--rct-color-nonfocustree-item-selected-text);
}

.rct-tree-root.rct-tree-root-focus .rct-tree-item-title-container-selected {
  background-color: var(--rct-color-focustree-item-selected-bg);
  color: var(--rct-color-focustree-item-selected-text);
}

.rct-tree-root.rct-tree-root-focus .rct-tree-item-title-container-focused {
  outline: none;
  border-color: var(--rct-color-focustree-item-focused-border);
}

.rct-tree-root:not(.rct-tree-root-focus) .rct-tree-item-title-container-focused {
  outline: none;
  border-color: var(--rct-color-nonfocustree-item-focused-border);
}

.rct-tree-item-title-container-dragging-over {
  background-color: var(--rct-color-focustree-item-draggingover-bg);
  color: var(--rct-color-focustree-item-draggingover-color);
}

.rct-tree-item-button-search-match {
  font-style: italic;
}

.rct-tree-item-search-highlight {
  background-color: var(--rct-color-search-highlight-bg);
}

.rct-tree-drag-between-line {
  position: absolute;
  right: 0;
  top: -2px;
  height: 4px;
  background-color: var(--rct-color-drag-between-line-bg);
}

.rct-tree-drag-between-line-top {
  top: 0px;
}

.rct-tree-drag-between-line-bottom {
  top: -4px;
}

.rct-tree-search-input-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
}

.rct-tree-search-input {
  position: fixed;
  width: 120px;
}

.rct-tree-item-renaming-form {
  flex-grow: 1;
  display: flex;
}

.rct-tree-item-renaming-input {
  flex-grow: 1;
  background-color: inherit;
  border: none;
  color: inherit;
  outline: none;
}

.rct-tree-item-renaming-submit-button {
  border: none;
  background-color: var(--rct-color-renaming-input-submitbutton-bg);
  border-radius: 999px;
  color: var(--rct-color-renaming-input-submitbutton-text);
  cursor: pointer;
}

.rct-tree-item-renaming-submit-button:hover {
  background-color: var(--rct-color-renaming-input-submitbutton-bg-hover);
  color: var(--rct-color-renaming-input-submitbutton-text-hover);
}

.rct-tree-item-renaming-submit-button:active {
  background-color: var(--rct-color-renaming-input-submitbutton-bg-active);
  color: var(--rct-color-renaming-input-submitbutton-text-active);
}

@font-face {
  font-family: anticon;
  src: url(//at.alicdn.com/t/font_1434092639_4910953.eot);
  src: url(//at.alicdn.com/t/font_1434092639_4910953.eot?#iefix) format("embedded-opentype"), url(//at.alicdn.com/t/font_1434092639_4910953.woff) format("woff"), url(//at.alicdn.com/t/font_1434092639_4910953.ttf) format("truetype"), url(//at.alicdn.com/t/font_1434092639_4910953.svg#iconfont) format("svg");
}
.rc-dropdown {
  position: absolute;
  left: -9999px;
  top: -9999px;
  z-index: 1070;
  display: block;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.rc-dropdown-hidden {
  display: none;
}

.rc-dropdown .rc-menu {
  outline: none;
  position: relative;
  list-style-type: none;
  padding: 0;
  margin: 2px 0;
  text-align: left;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 5px #ccc;
  background-clip: padding-box;
  border: 1px solid #ccc;
}

.rc-dropdown .rc-menu > li {
  margin: 0;
  padding: 0;
}

.rc-dropdown .rc-menu:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.01);
}

.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item {
  position: relative;
  display: block;
  padding: 7px 10px;
  clear: both;
  font-size: 12px;
  font-weight: 400;
  color: #666;
  white-space: nowrap;
}

.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item:hover, .rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-active, .rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-selected {
  background-color: #ebfaff;
}

.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-selected {
  position: relative;
}

.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-selected:after {
  content: "\e613";
  font-family: anticon;
  font-weight: 700;
  position: absolute;
  top: 6px;
  right: 16px;
  color: #3cb8f0;
}

.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-disabled {
  color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}

.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-disabled:hover {
  color: #ccc;
  background-color: #fff;
  cursor: not-allowed;
}

.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-divider {
  height: 1px;
  margin: 1px 0;
  overflow: hidden;
  background-color: #e5e5e5;
  line-height: 0;
}

.rc-dropdown-slide-up-enter, .rc-dropdown-slide-up-appear {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  transform-origin: 0 0;
  display: block !important;
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  animation-play-state: paused;
}

.rc-dropdown-slide-up-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  transform-origin: 0 0;
  display: block !important;
  opacity: 1;
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  animation-play-state: paused;
}

.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-bottomLeft, .rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-bottomLeft, .rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-bottomCenter, .rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-bottomCenter, .rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-bottomRight, .rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-bottomRight {
  animation-name: rcDropdownSlideUpIn;
  animation-play-state: running;
}

.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-topLeft, .rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-topLeft, .rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-topCenter, .rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-topCenter, .rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-topRight, .rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-topRight {
  animation-name: rcDropdownSlideDownIn;
  animation-play-state: running;
}

.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-bottomLeft, .rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-bottomCenter, .rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-bottomRight {
  animation-name: rcDropdownSlideUpOut;
  animation-play-state: running;
}

.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-topLeft, .rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-topCenter, .rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-topRight {
  animation-name: rcDropdownSlideDownOut;
  animation-play-state: running;
}

@keyframes rcDropdownSlideUpIn {
  0% {
    opacity: 0;
    transform-origin: 0% 0%;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform-origin: 0% 0%;
    transform: scaleY(1);
  }
}
@keyframes rcDropdownSlideUpOut {
  0% {
    opacity: 1;
    transform-origin: 0% 0%;
    transform: scaleY(1);
  }
  to {
    opacity: 0;
    transform-origin: 0% 0%;
    transform: scaleY(0);
  }
}
@keyframes rcDropdownSlideDownIn {
  0% {
    opacity: 0;
    transform-origin: 0% 100%;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform-origin: 0% 100%;
    transform: scaleY(1);
  }
}
@keyframes rcDropdownSlideDownOut {
  0% {
    opacity: 1;
    transform-origin: 0% 100%;
    transform: scaleY(1);
  }
  to {
    opacity: 0;
    transform-origin: 0% 100%;
    transform: scaleY(0);
  }
}
.rc-dropdown-arrow {
  position: absolute;
  border-width: 4px;
  border-color: transparent;
  box-shadow: 0 1px 5px #ccc;
  border-style: solid;
  transform: rotate(45deg);
}

.rc-dropdown-show-arrow.rc-dropdown-placement-top, .rc-dropdown-show-arrow.rc-dropdown-placement-topLeft, .rc-dropdown-show-arrow.rc-dropdown-placement-topRight {
  padding-bottom: 6px;
}

.rc-dropdown-show-arrow.rc-dropdown-placement-bottom, .rc-dropdown-show-arrow.rc-dropdown-placement-bottomLeft, .rc-dropdown-show-arrow.rc-dropdown-placement-bottomRight {
  padding-top: 6px;
}

.rc-dropdown-placement-top .rc-dropdown-arrow, .rc-dropdown-placement-topLeft .rc-dropdown-arrow, .rc-dropdown-placement-topRight .rc-dropdown-arrow {
  bottom: 4px;
  border-top-color: #fff;
}

.rc-dropdown-placement-top .rc-dropdown-arrow {
  left: 50%;
}

.rc-dropdown-placement-topLeft .rc-dropdown-arrow {
  left: 15%;
}

.rc-dropdown-placement-topRight .rc-dropdown-arrow {
  right: 15%;
}

.rc-dropdown-placement-bottom .rc-dropdown-arrow, .rc-dropdown-placement-bottomLeft .rc-dropdown-arrow, .rc-dropdown-placement-bottomRight .rc-dropdown-arrow {
  top: 4px;
  border-bottom-color: #fff;
}

.rc-dropdown-placement-bottom .rc-dropdown-arrow {
  left: 50%;
}

.rc-dropdown-placement-bottomLeft .rc-dropdown-arrow {
  left: 15%;
}

.rc-dropdown-placement-bottomRight .rc-dropdown-arrow {
  right: 15%;
}

.dao-contextMenu .rc-menu, .dao-contextMenu .rc-menu-submenu {
  border: none;
  line-height: 30px;
  border-radius: 6px;
  box-shadow: none;
}

.dao-contextMenu .rc-menu .rc-menu-item, .dao-contextMenu .rc-menu .rc-menu-submenu-title, .dao-contextMenu .rc-menu-submenu .rc-menu-item, .dao-contextMenu .rc-menu-submenu .rc-menu-submenu-title {
  padding-left: 10px;
  padding-right: 10px;
  color: var(--d42-editor__rc-menu-item--color);
  background-color: var(--d42-editor__rc-menu-item--bg);
}

.dao-contextMenu .rc-menu .rc-menu-item:hover, .dao-contextMenu .rc-menu .rc-menu-submenu-title:hover, .dao-contextMenu .rc-menu-submenu .rc-menu-item:hover, .dao-contextMenu .rc-menu-submenu .rc-menu-submenu-title:hover {
  background-color: var(--d42-editor__rc-menu-item-hover--bg);
  color: var(--d42-editor__rc-menu-item-hover--color);
}

.dao__cm--blockquote {
  background-color: rgba(68, 134, 255, 0.1019607843);
  display: flex !important;
  flex-direction: column;
}

.dao__cm--blockquote.ai.isFirstLine {
  position: relative;
  padding-top: 34px;
}

.dao__cm--blockquote.ai.isFirstLine .dao__cm--iconLine--container {
  position: absolute;
  top: 0px;
  display: flex;
  width: 100%;
}

.dao__cm--blockquote.ai {
  display: block !important;
  min-height: 28px;
}

.dao__cm--blockquote.isDone {
  background-color: transparent;
}

.dao__cm--blockquote_highlight {
  background-color: rgba(68, 134, 255, 0.1019607843);
}

.dao__cm--blockquote_highlight.isDone {
  background-color: transparent;
}

.dao__cm--blockquote_highlight.isDone.hight {
  background-color: rgba(68, 134, 255, 0.1019607843);
}

.dao__cm--blockquote_highlight.hidden {
  display: none;
}

.dao__cm--blockquote.hidden {
  display: none !important;
}

.dao__cm--blockquote br {
  display: none;
}

.dao__cm--blockquote.ai br {
  display: block;
}

.dao__cm--blockquote .cm-widgetBuffer {
  display: none;
}

.dao__cm--blockquote-mask .ͼw {
  color: red;
  font-size: 20px;
}

.dao__cm--blockquote--container {
  position: relative;
  color: #5d945d;
  display: flex;
  flex-direction: column;
}

.dao__cm--blockquote--container.ai {
  padding: 10px;
  flex-direction: row;
  justify-content: space-between;
}

.dao__cm--blockquote--container-okBtn {
  color: #1bb380;
  padding: 6px;
  border-radius: 6px;
  margin-right: 16px;
  cursor: pointer;
}

.dao__cm--blockquote--container-okBtn.dao42__icon--pass:before {
  margin-right: 4px;
}

.dao__cm--blockquote--container-okBtn:hover {
  background: rgba(27, 179, 128, 0.1);
}

.dao__cm--blockquote--container-cancelBtn {
  color: #e8e1e1;
  padding: 6px;
  border-radius: 6px;
  cursor: pointer;
}

.dao__cm--blockquote--container-cancelBtn.dao42__icon--failed:before {
  margin-right: 4px;
}

.dao__cm--blockquote--container-cancelBtn:hover {
  background: rgba(232, 225, 225, 0.1);
}

.dao__cm--blockquote--container-flag {
  background-color: rgba(255, 255, 255, 0.5019607843);
  color: #1a1a1a;
  font-size: 12px;
  padding-top: 4px;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: inline-block;
  text-align: center;
  line-height: 1;
  padding-left: 4px;
  padding-right: 4px;
  margin-left: 4px;
  margin-right: 4px;
}

.dao__cm--blockquote--container.transparent {
  display: inline-block;
  color: transparent;
  background-color: rgba(68, 134, 255, 0.1019607843);
  width: calc(100% + 6px);
  margin-left: -6px;
}

.dao__cm--blockquote--container i {
  position: absolute;
  color: #408cff;
  right: 0;
  cursor: pointer;
}

.dao__cm--blockquote--container i .icon-label {
  font-size: 12px;
  margin-left: 4px;
  cursor: pointer;
  position: relative;
  top: -2px;
}

.dao__cm--blockquote .cm-lintRange-error {
  background-image: none !important;
}

.cm-divide-gutter {
  width: 2px;
}

.cm-divide-gutter .cm-divide-gutter-changes {
  background-color: #4486ff;
}

.cm-divide-gutter .cm-divide-gutter-cheat {
  background-color: #ffb357;
}

.cm-divide-gutter .cm-activeLineGutter.cm-divide-gutter-changes {
  background-color: #4486ff;
}

.cm-divide-gutter .cm-activeLineGutter.cm-divide-gutter-cheat {
  background-color: #ffb357;
}

.cm-changes-highlight {
  background-color: rgba(68, 134, 255, 0.1019607843);
}

.cm-cheat-highlight {
  background-color: rgba(255, 179, 87, 0.1019607843);
}

.cm-completionIcon-keyword {
  margin-right: 12px;
  margin-top: 6px;
}

.cm-editor.disabled {
  cursor: not-allowed;
}

.cm-searchMatch.cm-searchMatch-selected {
  background-color: rgba(9, 8, 237, 0.5019607843) !important;
}

div.cm-layer.cm-layer-above.cm-cursorLayer > div.cm-cursor {
  height: 20px !important;
}

.d42.gutter-custom-span-line_dropdown {
  margin-left: 14px;
  color: var(--d42-editor__rc-menu-item--color);
}

.d42.gutter-custom-span-line_dropdown .rc-dropdown {
  position: initial;
  left: auto !important;
  top: auto !important;
}

.d42.gutter-custom-span-line_dropdown .dao-contextmenu-label.d42 {
  font-size: 12px;
}

.d42.gutter-custom-span-line_dropdown .dao-contextMenu .rc-menu, .d42.gutter-custom-span-line_dropdown .dao-contextMenu .rc-menu-submenu {
  border-radius: 0;
}

.dao__cm--iconLine--container {
  padding: 6px 10px 6px 6px;
  display: flex;
  justify-content: space-between;
}

.dao__cm--iconLine--container .dao42_switchOldcode {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dao__cm--iconLine--container .dao42_switchOldcode .iconLabel {
  color: #fff;
  margin-left: 4px;
}

.dao__cm--iconLine--container .dao42_switchOldcode input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}

.dao__cm--iconLine--container .dao42_switchOldcode label {
  cursor: pointer;
  text-indent: -9999px;
  width: 38px;
  height: 16px;
  background: grey;
  display: block;
  border-radius: 100px;
  position: relative;
}

.dao__cm--iconLine--container .dao42_switchOldcode label:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}

.dao__cm--iconLine--container .dao42_switchOldcode input:checked + label {
  background: #1BB380;
}

.dao__cm--iconLine--container .dao42_switchOldcode input:checked + label:after {
  left: calc(100% + 0px);
  transform: translate(-100%);
}

@font-face {
  font-family: d42;
  src: url(//at.alicdn.com/t/c/font_3608060_trlirpnblkg.woff2?t=1704938108323) format("woff2"), url(//at.alicdn.com/t/c/font_3608060_trlirpnblkg.woff?t=1704938108323) format("woff"), url(//at.alicdn.com/t/c/font_3608060_trlirpnblkg.ttf?t=1704938108323) format("truetype");
}
.d42 {
  font-family: d42 !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dao42__icon-tool:before {
  content: "\e89a";
}

.dao42__icon--code-float-menu:before {
  content: "\e6a2";
}

.dao42__icon--code-pass:before {
  content: "\e6a0";
  margin-right: 6px;
}

.dao42__icon--code-close:before {
  content: "\e6a1";
  margin-right: 6px;
}

.dao42__icon--roundcheckfill:before {
  content: "\e656";
}

.dao42__icon--infofill:before {
  content: "\e6e4";
}

.dao42__icon--close-circle-fill:before {
  content: "\e844";
}

.dao42__icon--exclamation_circle_fill:before {
  content: "\e67b";
}

.dao42__icon--step-out:before {
  content: "\e862";
}

.dao42__icon--setp-into:before {
  content: "\e863";
}

.dao42__icon--next1:before {
  content: "\e865";
}

.dao42__icon--next-step1:before {
  content: "\e866";
}

.dao42__icon--stop:before {
  content: "\e867";
}

.dao42__icon--star:before {
  content: "\e868";
}

.dao42__icon--debug:before {
  content: "\e864";
}

.dao42__icon--warning-circle:before {
  content: "\e7d0";
}

.dao42__icon--pass:before {
  content: "\e81a";
}

.dao42__icon--failed:before {
  content: "\e829";
}

.dao42__icon--layout1:before {
  content: "\e84b";
}

.dao42__icon--layout2:before {
  content: "\e84c";
}

.dao42__icon--create:before {
  content: "\e86c";
}

.dao42__icon--fix:before {
  content: "\e86d";
}

.dao42__icon--arrow-list-right:before {
  content: "\e7c4";
}

.dao42__icon--image-art:before {
  content: "\e635";
}

.dao42__icon--c-scale-to-original:before {
  content: "\ed4f";
}

.dao42__icon--zoomout:before {
  content: "\e897";
}

.dao42__icon--rotate-left:before {
  content: "\e901";
}

.dao42__icon--rotate-right:before {
  content: "\e902";
}

.dao42__icon--zoomin:before {
  content: "\e684";
}

.dao42__icon--conceal-full:before {
  content: "\e860";
}

.dao42__icon--conceal:before {
  content: "\e861";
}

.dao42__icon--lock-full:before {
  content: "\e85e";
}

.dao42__icon--lock:before {
  content: "\e85f";
}

.dao42__icon--smb-icon-arrow-up:before {
  content: "\e6fd";
}

.dao42__icon--smb-icon-arrow-down:before {
  content: "\e6ff";
}

.dao42__icon-arrow-left:before {
  content: "\e614";
}

.dao42__icon-arrow-right:before {
  content: "\e615";
}

.dao42__icon--debug-step-out:before {
  content: "\e610";
}

.dao42__icon--debug-step-into:before {
  content: "\e611";
}

.dao42__icon--end:before {
  content: "\e60f";
}

.dao42__icon--Start-01:before {
  content: "\e60a";
}

.dao42__icon--next:before {
  content: "\e60b";
}

.dao42__icon--next-step:before {
  content: "\e60d";
}

.dao42__icon--point:before {
  content: "\e609";
}

.dao42__icon--expand-full:before {
  content: "\e852";
}

.dao42__icon--old-full:before {
  content: "\e853";
}

.dao42__icon--old:before {
  content: "\e854";
}

.dao42__icon--expand:before {
  content: "\e855";
}

.dao42__icon--question-circle:before {
  content: "\e603";
}

.dao42__icon--refresh:before {
  content: "\e602";
}

.dao42__icon--close:before {
  content: "\e851";
}

.dao42__icon--file:before {
  content: "\e84d";
}

.dao42__icon--folder:before {
  content: "\e84e";
}

.dao42__icon--todo:before {
  content: "\e846";
}

.dao42__icon--todo-full:before {
  content: "\e84a";
}

.dao42__icon--more:before {
  content: "\e617";
}

.dao42__icon--add-full:before {
  content: "\e845";
}

.dao42__icon--add:before {
  content: "\e847";
}

.dao42__icon--add-file:before {
  content: "\e818";
}

.dao42__icon--add-folder:before {
  content: "\e7e2";
}

.dao42__icon--file-search:before {
  content: "\e605";
}

.dao42__icon--file-search-clear:before {
  content: "\e604";
}

.dao42__icon--file-search-expand:before {
  content: "\e601";
}

.dao42__icon--match-regular:before {
  content: "\e606";
}

.dao42__icon--match-whole:before {
  content: "\e607";
}

.dao42__icon--match-letter:before {
  content: "\e608";
}

.dao42__icon--preserve-case:before {
  content: "\e60c";
}

.dao42__icon--replace-all:before {
  content: "\e612";
}

.dao42__icon--replace-single:before {
  content: "\e613";
}

.dao42__icon--replace-warning:before {
  content: "\e616";
}

.dao42__icon--loading:before {
  content: "\e60e";
  display: inline-block;
  animation: loadingRotate infinite 3s linear;
}

@keyframes loadingRotate {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
div.d42-tree-root {
  width: 100%;
  height: 100%;
}

div.d42-tree-root::-webkit-scrollbar {
  background-color: #1e1e1e;
  width: 6px;
  height: 6px;
}

div.d42-tree-root::-webkit-scrollbar-thumb {
  background-color: #575757;
  border-radius: 4px;
}

.xterm {
  width: 100%;
  height: 100%;
  padding: 8px;
}

.xterm .xterm-viewport {
  overflow-y: hidden;
}

.xterm .xterm-viewport::-webkit-scrollbar {
  background-color: #1e1e1e;
  width: 6px;
}

.xterm .xterm-viewport::-webkit-scrollbar-thumb {
  background-color: #575757;
  border-radius: 4px;
}

.xterm .xterm-screen {
  overflow-y: hidden;
  overflow-x: hidden;
}

.xterm .xterm-screen .xterm-helpers .xterm-helper-user-label {
  position: absolute;
  height: 20px;
  padding: 0 4px;
  transform: translateY(-20px);
  color: #fff;
}

.xterm .xterm-screen::-webkit-scrollbar {
  background-color: #1e1e1e;
  width: 6px;
}

.xterm .xterm-screen::-webkit-scrollbar-thumb {
  background-color: #575757;
  border-radius: 4px;
}

.d42-visible {
  display: block;
}

.d42-hidden {
  display: none;
}

.d42-btn {
  background-color: transparent;
  outline: none;
  border: none;
}

.replayer-wrapper {
  position: relative;
}

.replayer-mouse {
  position: absolute;
  width: 20px;
  height: 20px;
  transition: left 0.05s linear, top 0.05s linear;
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjMwMCIgd2lkdGg9IjMwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBkYXRhLW5hbWU9IkxheWVyIDEiIHZpZXdCb3g9IjAgMCA1MCA1MCI+PHBhdGggZD0iTTQ4LjcxIDQyLjkxTDM0LjA4IDI4LjI5IDQ0LjMzIDE4YTEgMSAwIDAwLS4zMy0xLjYxTDIuMzUgMS4wNmExIDEgMCAwMC0xLjI5IDEuMjlMMTYuMzkgNDRhMSAxIDAgMDAxLjY1LjM2bDEwLjI1LTEwLjI4IDE0LjYyIDE0LjYzYTEgMSAwIDAwMS40MSAwbDQuMzgtNC4zOGExIDEgMCAwMC4wMS0xLjQyem0tNS4wOSAzLjY3TDI5IDMyYTEgMSAwIDAwLTEuNDEgMGwtOS44NSA5Ljg1TDMuNjkgMy42OWwzOC4xMiAxNEwzMiAyNy41OEExIDEgMCAwMDMyIDI5bDE0LjU5IDE0LjYyeiIvPjwvc3ZnPg==);
  border-color: transparent;
}

.replayer-mouse:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #4950f6;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}

.replayer-mouse.active:after {
  animation: click 0.2s ease-in-out 1;
}

.replayer-mouse.touch-device {
  background-image: none;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  margin-left: -37px;
  margin-top: -37px;
  border: 4px solid rgba(73, 80, 246, 0);
  transition: left 0s linear, top 0s linear, border-color 0.2s ease-in-out;
}

.replayer-mouse.touch-device.touch-active {
  border-color: #4950f6;
  transition: left 0.25s linear, top 0.25s linear, border-color 0.2s ease-in-out;
}

.replayer-mouse.touch-device:after {
  opacity: 0;
}

.replayer-mouse.touch-device.active:after {
  animation: touch-click 0.2s ease-in-out 1;
}

.replayer-mouse-tail {
  position: absolute;
  pointer-events: none;
}

@keyframes click {
  0% {
    opacity: 0.3;
    width: 20px;
    height: 20px;
  }
  50% {
    opacity: 0.5;
    width: 10px;
    height: 10px;
  }
}
@keyframes touch-click {
  0% {
    opacity: 0;
    width: 20px;
    height: 20px;
  }
  50% {
    opacity: 0.5;
    width: 10px;
    height: 10px;
  }
}
.rr-controller.svelte-19ke1iv.svelte-19ke1iv {
  width: 100%;
  height: 80px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border-radius: 0 0 5px 5px;
}

.rr-timeline.svelte-19ke1iv.svelte-19ke1iv {
  width: 80%;
  display: flex;
  align-items: center;
}

.rr-timeline__time.svelte-19ke1iv.svelte-19ke1iv {
  display: inline-block;
  width: 100px;
  text-align: center;
  color: #11103e;
}

.rr-progress.svelte-19ke1iv.svelte-19ke1iv {
  flex: 1;
  height: 12px;
  background: #eee;
  position: relative;
  border-radius: 3px;
  cursor: pointer;
  box-sizing: border-box;
  border-top: solid 4px #fff;
  border-bottom: solid 4px #fff;
}

.rr-progress.disabled.svelte-19ke1iv.svelte-19ke1iv {
  cursor: not-allowed;
}

.rr-progress__step.svelte-19ke1iv.svelte-19ke1iv {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #e0e1fe;
}

.rr-progress__handler.svelte-19ke1iv.svelte-19ke1iv {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  position: absolute;
  top: 2px;
  transform: translate(-50%, -50%);
  background: rgb(73, 80, 246);
}

.rr-controller__btns.svelte-19ke1iv.svelte-19ke1iv {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.rr-controller__btns.svelte-19ke1iv button.svelte-19ke1iv {
  width: 32px;
  height: 32px;
  display: flex;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.rr-controller__btns.svelte-19ke1iv button.svelte-19ke1iv:active {
  background: #e0e1fe;
}

.rr-controller__btns.svelte-19ke1iv button.active.svelte-19ke1iv {
  color: #fff;
  background: rgb(73, 80, 246);
}

.rr-controller__btns.svelte-19ke1iv button.svelte-19ke1iv:disabled {
  cursor: not-allowed;
}

.switch.svelte-9brlez.svelte-9brlez.svelte-9brlez {
  height: 1em;
  display: flex;
  align-items: center;
}

.switch.disabled.svelte-9brlez.svelte-9brlez.svelte-9brlez {
  opacity: 0.5;
}

.label.svelte-9brlez.svelte-9brlez.svelte-9brlez {
  margin: 0 8px;
}

.switch.svelte-9brlez input[type=checkbox].svelte-9brlez.svelte-9brlez {
  position: absolute;
  opacity: 0;
}

.switch.svelte-9brlez label.svelte-9brlez.svelte-9brlez {
  width: 2em;
  height: 1em;
  position: relative;
  cursor: pointer;
  display: block;
}

.switch.disabled.svelte-9brlez label.svelte-9brlez.svelte-9brlez {
  cursor: not-allowed;
}

.switch.svelte-9brlez label.svelte-9brlez.svelte-9brlez:before {
  content: "";
  position: absolute;
  width: 2em;
  height: 1em;
  left: 0.1em;
  transition: background 0.1s ease;
  background: rgba(73, 80, 246, 0.5);
  border-radius: 50px;
}

.switch.svelte-9brlez label.svelte-9brlez.svelte-9brlez:after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  border-radius: 50px;
  left: 0;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3019607843);
  background: #fcfff4;
  animation: switch-off 0.2s ease-out;
  z-index: 2;
}

.switch.svelte-9brlez input[type=checkbox].svelte-9brlez:checked + label.svelte-9brlez:before {
  background: rgb(73, 80, 246);
}

.switch.svelte-9brlez input[type=checkbox].svelte-9brlez:checked + label.svelte-9brlez:after {
  animation: switch-on 0.2s ease-out;
  left: 1.1em;
}

.rc-image {
  display: inline-flex;
  position: relative;
}

.rc-image-img {
  width: 100%;
  height: auto;
}

.rc-image-img-placeholder {
  background-color: #f3f3f3;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjhweCIgaGVpZ2h0PSIyMnB4IiB2aWV3Qm94PSIwIDAgMjggMjIiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU1LjIgKDc4MTgxKSAtIGh0dHBzOi8vc2tldGNoYXBwLmNvbSAtLT4KICAgIDx0aXRsZT5pbWFnZS1maWxs5aSH5Lu9PC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9Iuafpeeci+WbvueJh+S8mOWMljQuMCIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IuWKoOi9veWbvueJhyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU3Mi4wMDAwMDAsIC01MDYuMDAwMDAwKSI+CiAgICAgICAgICAgIDxnIGlkPSJpbWFnZS1maWxs5aSH5Lu9IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg1NzAuMDAwMDAwLCA1MDEuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiBmaWxsPSIjMDAwMDAwIiBvcGFjaXR5PSIwIiB4PSIwIiB5PSIwIiB3aWR0aD0iMzIiIGhlaWdodD0iMzIiPjwvcmVjdD4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0yOSw1IEwzLDUgQzIuNDQ2ODc1LDUgMiw1LjQ0Njg3NSAyLDYgTDIsMjYgQzIsMjYuNTUzMTI1IDIuNDQ2ODc1LDI3IDMsMjcgTDI5LDI3IEMyOS41NTMxMjUsMjcgMzAsMjYuNTUzMTI1IDMwLDI2IEwzMCw2IEMzMCw1LjQ0Njg3NSAyOS41NTMxMjUsNSAyOSw1IFogTTEwLjU2MjUsOS41IEMxMS42NjU2MjUsOS41IDEyLjU2MjUsMTAuMzk2ODc1IDEyLjU2MjUsMTEuNSBDMTIuNTYyNSwxMi42MDMxMjUgMTEuNjY1NjI1LDEzLjUgMTAuNTYyNSwxMy41IEM5LjQ1OTM3NSwxMy41IDguNTYyNSwxMi42MDMxMjUgOC41NjI1LDExLjUgQzguNTYyNSwxMC4zOTY4NzUgOS40NTkzNzUsOS41IDEwLjU2MjUsOS41IFogTTI2LjYyMTg3NSwyMy4xNTkzNzUgQzI2LjU3ODEyNSwyMy4xOTY4NzUgMjYuNTE4NzUsMjMuMjE4NzUgMjYuNDU5Mzc1LDIzLjIxODc1IEw1LjUzNzUsMjMuMjE4NzUgQzUuNCwyMy4yMTg3NSA1LjI4NzUsMjMuMTA2MjUgNS4yODc1LDIyLjk2ODc1IEM1LjI4NzUsMjIuOTA5Mzc1IDUuMzA5Mzc1LDIyLjg1MzEyNSA1LjM0Njg3NSwyMi44MDYyNSBMMTAuNjY4NzUsMTYuNDkzNzUgQzEwLjc1NjI1LDE2LjM4NzUgMTAuOTE1NjI1LDE2LjM3NSAxMS4wMjE4NzUsMTYuNDYyNSBDMTEuMDMxMjUsMTYuNDcxODc1IDExLjA0Mzc1LDE2LjQ4MTI1IDExLjA1MzEyNSwxNi40OTM3NSBMMTQuMTU5Mzc1LDIwLjE4MTI1IEwxOS4xLDE0LjMyMTg3NSBDMTkuMTg3NSwxNC4yMTU2MjUgMTkuMzQ2ODc1LDE0LjIwMzEyNSAxOS40NTMxMjUsMTQuMjkwNjI1IEMxOS40NjI1LDE0LjMgMTkuNDc1LDE0LjMwOTM3NSAxOS40ODQzNzUsMTQuMzIxODc1IEwyNi42NTkzNzUsMjIuODA5Mzc1IEMyNi43NDA2MjUsMjIuOTEyNSAyNi43MjgxMjUsMjMuMDcxODc1IDI2LjYyMTg3NSwyMy4xNTkzNzUgWiIgaWQ9IlNoYXBlIiBmaWxsPSIjRThFOEU4Ij48L3BhdGg+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==);
}

.rc-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.rc-image-mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: opacity 0.3s;
}

.rc-image:hover .rc-image-mask {
  opacity: 1;
}

.rc-image-preview {
  text-align: center;
  height: 100%;
  pointer-events: none;
}

.rc-image-preview-body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.rc-image-preview.zoom-enter, .rc-image-preview.zoom-appear {
  transform: none;
  opacity: 0;
  animation-duration: 0.3s;
}

.rc-image-preview-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4509803922);
}

.rc-image-preview-mask-hidden {
  display: none;
}

.rc-image-preview-img {
  cursor: grab;
  transform: scaleZ(1);
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  user-select: none;
  vertical-align: middle;
  max-width: 100%;
  max-height: 70%;
}

.rc-image-preview-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rc-image-preview-img-wrapper > * {
  pointer-events: auto;
}

.rc-image-preview-moving .rc-image-preview-img {
  cursor: grabbing;
}

.rc-image-preview-moving .rc-image-preview-img-wrapper {
  transition-duration: 0s;
}

.rc-image-preview-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  overflow: auto;
  outline: 0;
  -webkit-overflow-scrolling: touch;
}

.rc-image-preview-close {
  position: fixed;
  top: 32px;
  right: 32px;
  display: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5019607843);
  border-radius: 50%;
  padding: 15px;
  outline: 0;
  border: 0;
  cursor: pointer;
}

.rc-image-preview-close:hover {
  opacity: 0.3;
}

.rc-image-preview-operations-wrapper {
  position: fixed;
  z-index: 1001;
}

.rc-image-preview-footer {
  position: fixed;
  z-index: 1001;
  bottom: 32px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rc-image-preview-progress {
  margin-bottom: 20px;
}

.rc-image-preview-operations {
  display: flex;
  color: #bbb;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 100px;
  padding: 0 20px;
}

.rc-image-preview-operations-operation {
  padding: 10px;
  cursor: pointer;
  margin-left: 10px;
  font-size: 18px;
}

.rc-image-preview-operations-operation-disabled {
  pointer-events: none;
  color: #6f6f6f;
}

.rc-image-preview-operations-operation:first-of-type {
  margin-left: 0;
}

.rc-image-preview-switch-left {
  position: fixed;
  left: 10px;
  top: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  background: rgba(187, 187, 187, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  cursor: pointer;
  color: #bbb;
}

.rc-image-preview-switch-left-disabled {
  background: rgba(187, 187, 187, 0.3);
  color: #6f6f6f;
  cursor: not-allowed;
}

.rc-image-preview-switch-left-disabled > .anticon {
  cursor: not-allowed;
}

.rc-image-preview-switch-left > .anticon {
  font-size: 24px;
}

.rc-image-preview-switch-right {
  position: fixed;
  right: 10px;
  top: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  background: rgba(187, 187, 187, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  cursor: pointer;
  color: #bbb;
}

.rc-image-preview-switch-right-disabled {
  background: rgba(187, 187, 187, 0.2);
  color: #6f6f6f;
  cursor: not-allowed;
}

.rc-image-preview-switch-right-disabled > .anticon {
  cursor: not-allowed;
}

.rc-image-preview-switch-right > .anticon {
  font-size: 24px;
}

.fade-enter, .fade-appear, .fade-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.fade-enter.fade-enter-active, .fade-appear.fade-appear-active {
  animation-name: rcImageFadeIn;
  animation-play-state: running;
}

.fade-leave.fade-leave-active {
  animation-name: rcImageFadeOut;
  animation-play-state: running;
  pointer-events: none;
}

.fade-enter, .fade-appear {
  opacity: 0;
  animation-timing-function: linear;
}

.fade-leave {
  animation-timing-function: linear;
}

@keyframes rcImageFadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes rcImageFadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.zoom-enter, .zoom-appear, .zoom-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.zoom-enter.zoom-enter-active, .zoom-appear.zoom-appear-active {
  animation-name: rcImageZoomIn;
  animation-play-state: running;
}

.zoom-leave.zoom-leave-active {
  animation-name: rcImageZoomOut;
  animation-play-state: running;
  pointer-events: none;
}

.zoom-enter, .zoom-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}

.zoom-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

@keyframes rcImageZoomIn {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes rcImageZoomOut {
  0% {
    transform: scale(1);
  }
  to {
    transform: scale(0.2);
    opacity: 0;
  }
}
.rc-image-preview-footer > div {
  position: fixed;
  display: flex;
  bottom: 0px;
  width: 100%;
  gap: 10px;
  justify-content: center;
  background-color: #fff;
  align-items: center;
  width: 200px !important;
  border-radius: 12px;
  bottom: 100px;
  height: 32px;
}

.rc-image-preview-footer > div > div {
  cursor: pointer;
}

.dao-icon-button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: unset;
}

.dao-icon-button.style-default {
  background: var(--d42-icon-button_default-bg);
  color: var(--d42-icon-button_default-color);
}

.dao-icon-button.style-default:hover {
  background: var(--d42-icon-button_hover-bg);
  color: var(--d42-icon-button_hover-color);
}

.dao-icon-button.style-active {
  background: var(--d42-icon-button_active-bg);
  color: var(--d42-icon-button_active-color);
}

.dao-icon-button.style-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--d42-icon-button_default-bg);
  color: var(--d42-icon-button_default-color);
}

.d42-move-enter, .d42-move-appear {
  opacity: 0;
  transform: scale(0.8) translateY(-30px);
}

.d42-move-enter-active, .d42-move-appear-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: opacity 0.2s, transform 0.2s;
}

.d42-move-enter-done, .d42-move-appear-done {
  opacity: 1;
}

.d42-move-exit {
  opacity: 1;
  transform: scale(1);
}

.d42-move-exit-active {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s;
}

.d42-move-exit-done, .d42-fade-enter, .d42-fade-appear {
  opacity: 0;
}

.d42-fade-enter-active, .d42-fade-appear-active {
  opacity: 1;
  transition: opacity 0.2s;
}

.d42-fade-enter-done, .d42-fade-appear-done, .d42-fade-exit {
  opacity: 1;
}

.d42-fade-exit-active {
  opacity: 0;
  transition: opacity 0.2s;
}

.d42-fade-exit-done {
  opacity: 0;
}

.d42-tooltip-content {
  background-color: #000;
  border-radius: 4px;
  padding: 4px 8px;
}

.d42-tooltip-content .d42-tooltip-title {
  color: #fff;
  font-size: 12px;
}

.file-search-tool-bar {
  padding-right: 12px;
}

.file-search-tool-bar .tool-bar-left, .file-search-tool-bar .tool-bar-right {
  display: flex;
  align-items: center;
}

.file-search-tool-bar .ml-4 {
  margin-left: 4px;
}

.file-search-input {
  padding: 8px;
}

.file-search-input .file-search-input-containor {
  padding: 8px;
  border-radius: 8px;
  background-color: var(--d42-keyword-search_input-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.file-search-input .file-search-input-section {
  flex: 1;
}

.file-search-input .replace-input-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.file-search-input .input-component-wrap {
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 12px;
  border: 1px solid var(--d42-keyword-search_input-border-color);
  border-radius: 8px;
  overflow: hidden;
}

.file-search-input .input-component-wrap .input-wrap {
  width: 100%;
}

.file-search-input .input-component-wrap .input-wrap.input-disabled {
  opacity: 0.4;
}

.file-search-input .input-component-wrap .input-wrap input {
  width: 100%;
  outline: none;
  background-color: var(--d42-keyword-search_input-bg);
  color: var(--d42-keyword-search_input-text);
  height: 24px;
  line-height: 24px;
  font-size: 14px;
}

.file-search-input .input-component-wrap .input-wrap input::placeholder {
  color: var(--d42-icon-input_placehold-color);
}

.file-search-input .icon-replace-all {
  width: 36px;
  height: auto;
}

.file-search-input .button-group {
  display: flex;
  margin-left: 10px;
}

.file-search-input .button-group .dao-icon-button:not(:last-of-type) {
  margin-right: 4px;
}

.file-search-input .mr-8 {
  margin-right: 8px;
}

.file-search-result {
  height: 100%;
}

.file-search-result .result-tips-wrap {
  padding: 4px 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.file-search-result .result-tips-wrap .result-tips {
  color: var(--d42-keyword-search_tip);
  font-size: 12px;
  margin-right: 4px;
}

.file-search-result .result-tips-wrap i {
  color: var(--d42-keyword-search_tip);
  animation: loading 3s linear infinite;
}

@keyframes loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.file-search-result .result-files {
  padding: 8px 4px;
  height: calc(100% - 141px);
  overflow-y: auto;
  overflow-x: hidden;
}

.file-search-result .result-files::-webkit-scrollbar {
  width: 7px;
}

.file-search-result .result-files::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background-color: var(--d42-tree__root-scrollbar-thumb--bg);
}

.file-search-result .result-files::-webkit-scrollbar-track {
  background: transparent;
}

.file-search-result .result-files::-webkit-scrollbar-corner {
  background-color: transparent;
}

.file-search-result .result-file-title-wrap {
  position: relative;
}

.file-search-result .result-file-title-wrap .abs-btn {
  position: absolute;
  left: 4px;
  top: 4px;
}

.file-search-result .result-file-title {
  width: 100%;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.file-search-result .result-file-title:hover {
  background-color: var(--d42-keyword-search_hover);
  border-radius: 8px;
}

.file-search-result .result-file-title .result-file-title-count {
  border-radius: 4px;
  height: 18px;
  line-height: 10px;
  padding: 4px;
  color: #ebebeb;
  background-color: var(--d42-keyword-search_badge-bg);
  margin: 0 4px;
  font-weight: 400;
  font-size: 12px;
}

.file-search-result .result-file-title .result-file-title-context {
  color: var(--d42-keyword-search_row-color);
  margin-left: 28px;
}

.file-search-result .result-file-title-right {
  display: flex;
  align-items: center;
}

.file-search-result .result-file-rows {
  margin: 0;
  padding: 0;
}

.file-search-result .result-file-rows.file-rows-hidden {
  display: none;
}

.file-search-result .result-file-rows li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
  list-style: none;
  margin: 0;
  color: var(--d42-keyword-search_row-color);
}

.file-search-result .result-file-rows li > p {
  padding: 0;
  margin: 0 5px 0 28px;
}

.file-search-result .result-file-rows li.file-item-hover:hover {
  background-color: var(--d42-keyword-search_hover);
  border-radius: 8px;
}

.file-search-result .result-file-rows li.file-item-active {
  background-color: var(--d42-keyword-search_row-active);
  border-radius: 8px;
}

.file-search-result .context-over-style {
  flex: 1 1 0%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}

.file-search-result .button-group {
  display: flex;
}

.keyword-search-component {
  height: 100%;
}

.keyword-search-component.settings-hidden {
  display: none;
}

.keyword-search-component .d42-root-toolbar-btns button i:before {
  font-size: 16px !important;
}

.file-search-modal {
  display: flex;
}

.file-search-modal p {
  margin: 0;
  padding: 0;
}

.file-search-modal .file-search-modal-icon {
  color: #ee794d;
  width: 14px;
  height: 14px;
  background-color: #fff;
  position: relative;
  border-radius: 7px;
  margin-top: 3px;
}

.file-search-modal .file-search-modal-icon i.file-search-icon {
  font-size: 20px;
  position: absolute;
  right: -4px;
  bottom: -9px;
}

.file-search-modal .file-search-modal-context {
  font-size: 14px;
  color: var(--d42-keyword-search_row-color);
  line-height: 20px;
  margin-left: 8px;
}

.light-red:before {
  color: #c97071;
}

.medium-red:before {
  color: #ac4142;
}

.dark-red:before {
  color: #742c2d;
}

.light-green:before {
  color: #a6ba7b;
}

.medium-green:before {
  color: #90a959;
}

.dark-green:before {
  color: #66783e;
}

.light-yellow:before {
  color: #fae0bc;
}

.medium-yellow:before {
  color: #ee9e2e;
}

.dark-yellow:before {
  color: #d88511;
}

.light-blue:before {
  color: #6098b0;
}

.medium-blue:before {
  color: #6a9fb5;
}

.dark-blue:before {
  color: #46788d;
}

.light-maroon:before {
  color: #be7953;
}

.medium-maroon:before {
  color: #8f5536;
}

.dark-maroon:before {
  color: #573421;
}

.light-purple:before {
  color: #c7a4c0;
}

.medium-purple:before {
  color: #aa759f;
}

.dark-purple:before {
  color: #825078;
}

.light-orange:before {
  color: #d99762;
}

.medium-orange:before {
  color: #d28445;
}

.dark-orange:before {
  color: #a35f27;
}

.light-cyan:before {
  color: #6bb0a4;
}

.medium-cyan:before {
  color: #75b5aa;
}

.dark-cyan:before {
  color: #4d9085;
}

.light-pink:before {
  color: #ff4ddb;
}

.medium-pink:before {
  color: #f0c;
}

.dark-pink:before {
  color: #b3008f;
}

.theme-colour-check {
  background: #ffffff;
}

@font-face {
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
  src: url(data:font/woff2;base64,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);
}
@font-face {
  font-family: Mfizz;
  src: url(data:font/woff2;base64,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);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Devicons;
  src: url(data:font/woff2;base64,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);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: file-icons;
  src: url(data:font/woff2;base64,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);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: octicons;
  src: url(data:font/woff2;base64,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);
  font-weight: 400;
  font-style: normal;
}
.icon:before {
  font-weight: 400;
  font-style: normal;
  text-align: center;
  width: 16px;
  line-height: 1;
  position: relative;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
}

.binary-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f094";
}

.book-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f007";
}

.brew-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f069";
  font-size: 15px;
  left: 1px;
}

.checklist-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f076";
  font-size: 17px;
  left: 1px;
}

.code-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f05f";
}

.database-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f096";
}

.gear-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f02f";
}

.git-commit-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f01f";
}

.git-merge-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f023";
}

.github-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f00a";
}

.graph-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f043";
}

.image-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f012";
}

.key-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f049";
}

.link-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f0b0";
}

.markdown-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f0c9";
}

.package-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f0c4";
}

.ruby-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f047";
}

.secret-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f08c";
}

.squirrel-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f0b2";
  font-size: 15px;
}

.text-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f011";
}

.zip-icon:before {
  font-family: octicons;
  font-size: 16px;
  top: 1px;
  content: "\f013";
}

.android-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f17b";
  font-size: 16px;
  top: 1px;
}

.at-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f1fa";
  font-size: 15px;
  top: 1px;
}

.audio-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f028";
  font-size: 15px;
  top: 1px;
}

.bullhorn-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f0a1";
  font-size: 16px;
  top: 2px;
}

.calc-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f1ec";
  font-size: 14px;
}

.coffee-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f0f4";
  font-size: 14px;
  top: 1px;
}

.css3-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f13c";
  top: 0;
}

.circle-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f111";
  font-size: 16px;
  top: 1px;
}

.earth-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f0ac";
  font-size: 15px;
}

.gears-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f085";
  font-size: 15px;
}

.html5-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f13b";
  font-size: 15px;
  top: 1px;
}

.mobile-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f10b";
  font-size: 20px;
  top: 2px;
}

.moon-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f186";
  font-size: 16px;
  top: 1px;
}

.music-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f001";
  font-size: 15px;
}

.print-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f02f";
  font-size: 15px;
  top: 2px;
}

.recycle-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f1b8";
  font-size: 15px;
  top: 2px;
}

.rss-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f143";
  font-size: 16px;
  top: 2px;
}

.smarty-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f0eb";
  font-size: 15px;
}

.sourcemap-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f279";
  font-size: 14px;
}

.sun-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f185";
  font-size: 14px;
  -webkit-font-smoothing: subpixel-antialiased;
}

.toc-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f03a";
  font-size: 15px;
  top: 2px;
}

.twig-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f1bb";
  font-size: 14px;
}

.pdf-icon:before {
  font-family: FontAwesome;
  font-size: 13px;
  content: "\f1c1";
  font-size: 14px;
}

.apache-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f102";
  top: 3px;
  font-size: 15px;
}

.archlinux-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "A";
  top: 1px;
  font-size: 15px;
}

.c-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f106";
  top: 1px;
  font-size: 13px;
}

.cpp-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f10b";
  top: 1px;
}

.csharp-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f10c";
  top: 1px;
}

.debian-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f111";
  top: 1px;
}

.elixir-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f113";
  top: 1px;
}

.gnome-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f119";
  top: 1px;
}

.haskell-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f121";
  top: 2px;
  font-size: 16px;
}

.java-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f126";
  top: 2px;
  font-size: 16px;
}

.js-icon:before {
  font-family: Mfizz;
  content: "\f129";
  top: 1px;
  font-size: 14px;
}

.msql-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f136";
  top: 2px;
  font-size: 15px;
  text-shadow: 0 0 0;
}

.objc-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f13e";
  top: 2px;
  font-size: 16px;
}

.osx-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f141";
  top: 1px;
}

.perl-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f142";
  top: 1px;
}

.python-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f14c";
  top: 1px;
}

.red-hat-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f14e";
  top: 2px;
}

.scala-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f154";
  top: 1px;
}

.sql-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f10e";
  top: 1px;
}

.svg-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f15c";
  top: 1px;
}

.tt-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "TT";
}

.x11-icon:before {
  font-family: Mfizz;
  font-size: 14px;
  content: "\f16e";
  top: 1px;
  font-size: 13px;
}

.angular-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e653";
}

.appcelerator-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e6ab";
}

.appstore-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e613";
}

.asp-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e67f";
}

.atom-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e664";
  -webkit-font-smoothing: subpixel-antialiased;
}

.backbone-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e652";
}

.bootstrap-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e647";
  font-size: 15px;
  top: 2px;
}

.bower-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e64d";
  text-shadow: 0 0 0;
}

.chrome-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e643";
}

.clojure-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e668";
  -webkit-font-smoothing: subpixel-antialiased;
}

.compass-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e661";
  font-size: 14px;
  top: 2px;
}

.dart-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e698";
  font-size: 15px;
  top: 2px;
}

.dlang-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e6af";
}

.dojo-icon:before {
  font-family: Devicons;
  top: 3px;
  content: "\e61c";
  font-size: 16px;
  top: 4px;
  transform: scale(1.2);
  -webkit-font-smoothing: subpixel-antialiased;
}

.dropbox-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e607";
}

.eclipse-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e69e";
}

.erlang-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e6b1";
}

.extjs-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e68e";
}

.fsharp-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e6a7";
  left: 1px;
  top: 2px;
}

.git-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e602";
  font-size: 15px;
  top: 2px;
}

.heroku-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e67b";
}

.jquery-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e650";
  font-size: 15px;
  top: 2px;
}

.jqueryui-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e654";
  font-size: 15px;
  top: 2px;
}

.laravel-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e63f";
  -webkit-font-smoothing: subpixel-antialiased;
}

.materialize-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e6b6";
  transform: scale(1.2);
  -webkit-font-smoothing: subpixel-antialiased;
}

.modernizr-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e620";
}

.mootools-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e68f";
  text-shadow: 0 0 0;
}

.node-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e618";
}

.pod-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e669";
  font-size: 15px;
  top: 2px;
}

.prolog-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e6a1";
}

.rails-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e63b";
}

.raphael-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e65f";
  font-size: 15px;
}

.requirejs-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e670";
}

.rust-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e6a8";
}

.sass-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e64b";
}

.sencha-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e68c";
}

.snapsvg-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e65e";
}

.swift-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e655";
  left: -1px;
}

.travis-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e67e";
  font-size: 15px;
  top: 2px;
}

.uikit-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e673";
  font-size: 15px;
  top: 2px;
}

.unity3d-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e621";
}

.vim-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e6c5";
}

.vs-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e60c";
  font-size: 14px;
  top: 2px;
}

.windows-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e60f";
  font-size: 14px;
  top: 2px;
}

.yeoman-icon:before {
  font-family: Devicons;
  font-size: 16px;
  top: 3px;
  content: "\e67a";
}

._1c-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "ꗪ";
  top: 3px;
  font-size: 16px;
}

._1c-alt-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea28";
  top: 3px;
  font-size: 16px;
}

.abap-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e92b";
  top: 2px;
}

.access-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9ea";
  top: 2px;
}

.ada-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e90b";
  top: 3px;
  font-size: 17px;
}

.ae-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9f3";
  top: 2px;
}

.ahk-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e932";
  top: 2px;
}

.ai-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e6b4";
  top: 2px;
}

.alloy-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e935";
  top: 2px;
}

.alpine-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9ff";
  top: 2px;
  font-size: 16px;
}

.ampl-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e94e";
  top: 3px;
  font-size: 16px;
  left: 1px;
}

.amx-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e99b";
  top: 3px;
  font-size: 16px;
}

.ant-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e93e";
  top: 4px;
  font-size: 18px;
  transform: scale(1.1);
}

.antlr-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e92c";
  top: 3px;
}

.api-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e92d";
  top: 2px;
}

.apl-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "⍋";
  top: 2px;
}

.apple-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e925";
  top: 1px;
}

.appveyor-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e923";
  top: 2px;
}

.arc-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e92f";
  top: 2px;
}

.arduino-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e930";
  top: 3px;
  font-size: 16px;
}

.arttext-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "ⓐ";
  top: 2px;
}

.as-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e92e";
  top: 1px;
  font-size: 14px;
}

.asciidoc-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e918";
  top: 1px;
  font-size: 14px;
}

.ats-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e934";
  top: 2px;
}

.audacity-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9f9";
  top: 2px;
}

.augeas-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e931";
  top: 2px;
}

.autoit-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e933";
  top: 2px;
  font-size: 16px;
}

.babel-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e91f";
  top: 2px;
  left: 1px;
}

.bibtex-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e601";
  top: 2px;
  font-size: 16px;
  -webkit-font-smoothing: subpixel-antialiased;
}

.blender-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9fa";
  top: 2px;
}

.bluespec-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e93c";
  top: 1px;
  font-size: 13px;
  left: 1px;
}

.boo-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e939";
  top: 2px;
}

.boot-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\f103";
  top: 2px;
  font-size: 16px;
}

.brain-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e93a";
  top: 2px;
}

.brakeman-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9d6";
  top: 2px;
}

.bro-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e93b";
  top: 3px;
  font-size: 16px;
}

.broccoli-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e922";
  top: 1px;
  font-size: 14px;
}

.byond-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e962";
  top: 2px;
}

.cabal-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9c2";
  top: 2px;
}

.cake-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9e3";
  top: 2px;
}

.cakefile-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e924";
  top: 2px;
}

.cakephp-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9d3";
  top: 1px;
  font-size: 14px;
}

.cc-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9d5";
  top: 2px;
  font-size: 16px;
}

.ceylon-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e94f";
  top: 2px;
}

.cf-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e929";
  top: 2px;
}

.chai-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "c";
  top: 3px;
  font-size: 16px;
}

.chapel-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e950";
  top: 2px;
}

.chartjs-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea0b";
  top: 2px;
}

.chuck-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e943";
  top: 2px;
}

.circleci-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea12";
  top: 2px;
  font-size: 14px;
}

.cirru-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e951";
  top: 2px;
  text-shadow: 0 0 0;
}

.cl-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e972";
  top: 2px;
  text-shadow: 0 0 0;
}

.clarion-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e952";
  top: 1px;
  font-size: 14px;
  left: 1px;
}

.clean-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e95b";
  top: 2px;
  font-size: 16px;
}

.click-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e95c";
  top: 2px;
}

.clips-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e940";
  top: 3px;
  font-size: 18px;
}

.cljs-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\f104";
  top: 2px;
}

.cmake-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e93f";
  top: 1px;
  font-size: 14px;
}

.codecov-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "☂";
  top: 2px;
}

.composer-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e683";
  top: 3px;
  font-size: 17px;
}

.config-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\f07c";
  top: 2px;
  font-size: 14px;
}

.cordova-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea11";
  top: 2px;
}

.coq-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e95f";
  top: 2px;
  font-size: 16px;
  left: 1px;
}

.cp-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e942";
  top: 3px;
  font-size: 17px;
}

.creole-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e95e";
  top: 2px;
}

.crystal-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e902";
  top: 2px;
  left: 1px;
}

.csound-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9f0";
  top: 2px;
}

.csscript-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9e2";
  top: 2px;
}

.cucumber-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\f02b";
  top: 3px;
}

.cython-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e963";
  top: 2px;
}

.d3-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea10";
  top: 2px;
}

.darcs-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e964";
  top: 2px;
}

.dashboard-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\f07d";
  top: 2px;
  font-size: 13px;
}

.dbase-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9f1";
  top: 2px;
}

.default-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "🗌";
  top: 2px;
  font-size: 14px;
}

.diff-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e960";
  top: 2px;
}

.docker-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\f106";
  top: 3px;
  font-size: 18px;
}

.doxygen-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e928";
  top: 1px;
  font-size: 13px;
}

.doge-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e946";
  top: 2px;
}

.dyalog-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e90c";
  top: 1px;
  font-size: 14px;
  left: 1px;
}

.dylib-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea15";
  top: 2px;
}

.e-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "E";
  top: 1px;
  font-size: 14px;
}

.eagle-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e965";
  top: 2px;
}

.ec-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9c9";
  top: 2px;
}

.ecere-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e966";
  top: 3px;
  font-size: 16px;
}

.editorconfig-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea1b";
  top: 3px;
}

.eiffel-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e967";
  top: 2px;
  font-size: 16px;
}

.electron-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea27";
  top: 3px;
  font-size: 16px;
  text-shadow: 0 0 0;
}

.elm-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\f102";
  top: 2px;
}

.em-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e968";
  top: 3px;
  font-size: 16px;
}

.ember-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e61b";
  top: 2px;
  font-size: 14px;
}

.emacs-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e926";
  top: 2px;
}

.eq-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea0a";
  top: 5px;
}

.eslint-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea0f";
  top: 3px;
  font-size: 16px;
}

.excel-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9ee";
  top: 2px;
}

.fabfile-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e94b";
  top: 2px;
  font-size: 16px;
}

.factor-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e96a";
  top: 3px;
  font-size: 18px;
  left: -2px;
  transform: scale(1.2);
}

.fancy-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e96b";
  top: 2px;
  font-size: 16px;
}

.fantom-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e96f";
  top: 2px;
  left: 1px;
}

.fbx-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9fc";
  top: 2px;
}

.ff-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "ﬀ";
  top: 3px;
}

.finder-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9e9";
  top: 3px;
  font-size: 16px;
}

.flow-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e921";
  top: 1px;
}

.flux-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e969";
  top: 2px;
}

.font-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e90f";
  top: 1px;
  font-size: 14px;
  left: 1px;
}

.fortran-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e90a";
  top: 1px;
  font-size: 14px;
  left: 1px;
}

.freemarker-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e970";
  top: 2px;
  font-size: 16px;
  left: 1px;
}

.frege-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e96e";
  top: 2px;
  font-size: 16px;
  left: 1px;
}

.fuelux-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea09";
  top: 3px;
  font-size: 16px;
  left: 2px;
  transform: scale(1.15);
  text-shadow: 0 0 0;
}

.gams-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e973";
  top: 2px;
  left: 1px;
}

.gap-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e971";
  top: 3px;
  font-size: 16px;
  left: 1px;
}

.gdb-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea08";
  top: 3px;
  font-size: 16px;
  transform: scale(1.15);
  text-shadow: 0 0 0;
}

.genshi-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e976";
  top: 3px;
}

.gentoo-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e96d";
  top: 1px;
  font-size: 14px;
  left: 1px;
}

.gf-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e978";
  top: 2px;
}

.glade-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e938";
  top: 2px;
}

.glyphs-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "G";
  top: 3px;
}

.gml-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e975";
  top: 3px;
  font-size: 16px;
}

.gn-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea25";
  top: 2px;
}

.gnu-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e679";
  top: 2px;
  font-size: 16px;
  text-shadow: 0 0 0;
}

.go-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e624";
  top: 3px;
}

.godot-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e974";
  top: 2px;
}

.golo-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e979";
  top: 2px;
}

.gosu-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e97a";
  top: 2px;
}

.gradle-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e903";
  top: 3px;
  font-size: 16px;
  left: 1px;
}

.graphql-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e97c";
  top: 2px;
}

.graphviz-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e97d";
  top: 4px;
  font-size: 17px;
  left: 1px;
}

.groovy-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e904";
  top: 4px;
  font-size: 17px;
  left: -1px;
}

.grunt-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e611";
  top: 1px;
  font-size: 14px;
}

.gulp-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e610";
  top: 2px;
  font-size: 16px;
}

.hack-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9ce";
  top: 2px;
}

.haml-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\f15b";
  top: 2px;
}

.harbour-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e97b";
  top: 2px;
  font-size: 16px;
  text-shadow: 0 0 0;
}

.hashicorp-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e97e";
  top: 2px;
}

.haxe-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e907";
  top: 2px;
}

.hy-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e97f";
  top: 2px;
}

.idl-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e947";
  top: 3px;
  font-size: 18px;
}

.idris-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e983";
  top: 2px;
  font-size: 16px;
  -webkit-font-smoothing: subpixel-antialiased;
}

.igorpro-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e980";
  top: 2px;
  font-size: 16px;
  -webkit-font-smoothing: subpixel-antialiased;
}

.indesign-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9f4";
  top: 2px;
}

.inform7-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e984";
  top: 2px;
  font-size: 16px;
  text-shadow: 0 0 0;
}

.inno-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e985";
  top: 2px;
}

.io-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e981";
  top: 1px;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
}

.ioke-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e982";
  top: 2px;
}

.ionic-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\f14b";
  top: 2px;
}

.isabelle-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e945";
  top: 2px;
  font-size: 16px;
}

.j-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e937";
  top: 1px;
  font-size: 13px;
}

.jade-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e90d";
  top: 1px;
  font-size: 14px;
}

.jake-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e948";
  top: 3px;
  font-size: 16px;
}

.jenkins-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e667";
  top: 3px;
  font-size: 18px;
  text-shadow: 0 0 0;
}

.jinja-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e944";
  top: 2px;
}

.jsonld-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e958";
  top: 3px;
  font-size: 17px;
}

.jsx-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9e6";
  top: 1px;
  font-size: 14px;
}

.julia-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "⛬";
  top: 1px;
  font-size: 14px;
}

.jupyter-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e987";
  top: 3px;
  font-size: 16px;
}

.karma-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9cd";
  top: 2px;
}

.keynote-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9e5";
  top: 2px;
}

.khronos-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9f8";
  top: 2px;
}

.kivy-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e901";
  top: 2px;
}

.knockout-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "K";
  top: 2px;
}

.kotlin-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e989";
  top: 1px;
  font-size: 14px;
}

.krl-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e988";
  top: 1px;
  font-size: 14px;
}

.labview-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e98a";
  top: 2px;
  font-size: 16px;
}

.lasso-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e98c";
  top: 2px;
  left: 1px;
}

.leaflet-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea07";
  top: 2px;
}

.lean-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "L";
  top: 1px;
  font-size: 13px;
}

.lein-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\f105";
  top: 3px;
  font-size: 16px;
  text-shadow: 0 0 0;
  transform: scale(1.15);
}

.lfe-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e94c";
  top: 2px;
  font-size: 16px;
}

.lightwave-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9fb";
  top: 2px;
}

.lisp-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e908";
  top: 3px;
  font-size: 17px;
}

.llvm-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e91d";
  top: 3px;
  font-size: 17px;
}

.logtalk-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e98d";
  top: 2px;
  text-shadow: 0 0 0;
}

.lookml-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e98e";
  top: 2px;
  font-size: 16px;
  text-shadow: 0 0 0;
}

.ls-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e914";
  top: 2px;
  font-size: 14px;
}

.lsl-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e98b";
  top: 1px;
}

.lua-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e91b";
  top: 2px;
  font-size: 14px;
}

.mako-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e98f";
  top: 4px;
  font-size: 16px;
}

.mapbox-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e941";
  top: 1px;
  font-size: 13px;
}

.marko-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e920";
  top: 4px;
  font-size: 18px;
  left: -1px;
  transform: scale(1.05);
}

.mathematica-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e990";
  top: 2px;
  font-size: 16px;
}

.mathjax-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea06";
  top: 2px;
}

.matlab-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e991";
  top: 2px;
}

.max-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e993";
  top: 2px;
}

.maxscript-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e900";
  top: 2px;
}

.maya-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9f6";
  top: 2px;
  font-size: 16px;
}

.manpage-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e936";
  top: 3px;
}

.mediawiki-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e954";
  top: 2px;
  font-size: 16px;
}

.mercury-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e994";
  top: 3px;
  font-size: 16px;
  transform: scale(1.2);
}

.metal-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "M";
  top: 1px;
  left: 1px;
}

.meteor-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e6a5";
  top: 1px;
}

.minecraft-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9dc";
  top: 2px;
}

.mirah-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e995";
  top: 2px;
}

.mocha-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "⛾";
  top: 2px;
  font-size: 17px;
}

.model-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9e8";
  top: 2px;
  font-size: 16px;
}

.modula2-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e996";
  top: 2px;
}

.monkey-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e997";
  top: 3px;
  font-size: 18px;
  left: -1px;
}

.mruby-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea18";
  top: 2px;
}

.mupad-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9ca";
  top: 3px;
  font-size: 16px;
}

.mustache-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e60f";
  top: 2px;
  font-size: 16px;
}

.nant-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9e1";
  top: 3px;
  transform: scale(1.2);
}

.neko-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea05";
  top: 2px;
}

.netlogo-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e99c";
  top: 2px;
  left: 1px;
}

.newrelic-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9d7";
  top: 2px;
}

.nginx-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\f146b";
  top: 2px;
}

.nib-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "✒";
  top: 2px;
}

.nimrod-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e998";
  top: 2px;
}

.nit-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e999";
  top: 2px;
}

.nix-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e99a";
  top: 3px;
  font-size: 16px;
}

.nmap-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e94d";
  top: 3px;
  font-size: 16px;
  transform: scale(1.1);
}

.nodemon-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea26";
  top: 2px;
}

.normalize-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea04";
  top: 3px;
  font-size: 16px;
}

.npm-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e91c";
  top: 3px;
  font-size: 17px;
}

.nsis-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea1e";
  top: 3px;
  font-size: 16px;
}

.numpy-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e99d";
  top: 2px;
  font-size: 14px;
}

.nuget-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9d9";
  top: 2px;
}

.nunjucks-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e953";
  top: 2px;
  font-size: 16px;
}

.nvidia-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e95d";
  top: 2px;
}

.objj-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e99e";
  top: 2px;
}

.ocaml-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e91a";
  top: 1px;
  font-size: 14px;
}

.onenote-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9eb";
  top: 2px;
}

.ooc-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9cb";
  top: 2px;
}

.opa-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "☁";
  top: 2px;
}

.opencl-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e99f";
  top: 2px;
  font-size: 16px;
}

.openoffice-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9e4";
  top: 2px;
}

.org-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e917";
  top: 1px;
  font-size: 14px;
  left: 1px;
}

.owl-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e957";
  top: 2px;
}

.ox-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9a1";
  top: 3px;
  font-size: 16px;
  text-shadow: 0 0 0;
}

.oxygene-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9bf";
  top: 2px;
}

.oz-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9be";
  top: 2px;
}

.pan-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9bd";
  top: 2px;
}

.papyrus-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9bc";
  top: 2px;
}

.parrot-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9bb";
  top: 3px;
  font-size: 16px;
}

.pascal-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e92a";
  top: 2px;
}

.patch-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e961";
  top: 2px;
}

.pawn-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "♟";
  top: 1px;
  font-size: 14px;
}

.perl6-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e96c";
  top: 2px;
}

.phalcon-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e94a";
  top: 2px;
}

.php-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\f147";
  top: 1px;
  font-size: 14px;
  left: 1px;
}

.pickle-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9c4";
  top: 2px;
}

.pike-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9b9";
  top: 4px;
  font-size: 16px;
  -webkit-font-smoothing: subpixel-antialiased;
  transform: scale(1.15);
}

.pogo-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9b8";
  top: 3px;
  font-size: 14px;
  -webkit-font-smoothing: subpixel-antialiased;
}

.pony-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9b7";
  top: 3px;
  font-size: 16px;
}

.pointwise-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e977";
  top: 2px;
}

.postcss-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e910";
  top: 2px;
  font-size: 14px;
}

.postscript-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e955";
  top: 2px;
  left: 1px;
}

.povray-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "P";
  top: 2px;
  left: 1px;
}

.powerbuilder-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea14";
}

.powerpoint-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9ec";
  top: 2px;
}

.powershell-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9da";
  top: 2px;
  font-size: 16px;
}

.premiere-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9f5";
  top: 2px;
}

.processing-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9a0";
  top: 2px;
}

.progress-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9c0";
  top: 2px;
  font-size: 16px;
  transform: scale(1.2);
}

.propeller-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9b5";
  top: 3px;
  font-size: 16px;
}

.protractor-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9de";
  top: 3px;
}

.psd-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e6b8";
  top: 2px;
}

.pug-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea13";
  top: 3px;
  font-size: 16px;
}

.pug-alt-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9d0";
  top: 3px;
  font-size: 16px;
}

.puppet-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\f0c3";
  top: 2px;
  left: 1px;
}

.purebasic-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "Ƶ";
  top: 2px;
}

.purescript-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9b2";
  top: 3px;
}

.r-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e905";
  top: 3px;
  font-size: 17px;
}

.racket-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9b1";
  top: 2px;
  left: 1px;
}

.raml-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e913";
  top: 1px;
  font-size: 14px;
}

.rascal-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea24";
  top: 2px;
}

.rdoc-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9b0";
  top: 2px;
  left: 1px;
}

.react-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\f100";
  top: 2px;
}

.rebol-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9ae";
  top: 1px;
  font-size: 13px;
}

.reason-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea1d";
  top: 3px;
}

.red-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9ad";
  top: 3px;
  font-size: 16px;
}

.regex-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "*";
  top: 1px;
  font-size: 12px;
  left: 1px;
}

.rexx-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea16";
  top: 2px;
  font-size: 14px;
  left: 1px;
}

.riot-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e919";
  top: 4px;
  font-size: 18px;
}

.robot-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9ac";
  top: 2px;
  font-size: 14px;
}

.rollup-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea20";
  top: 2px;
}

.rst-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9cc";
  top: 3px;
  font-size: 16px;
}

.sage-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9ab";
  top: 3px;
  font-size: 16px;
  -webkit-font-smoothing: subpixel-antialiased;
}

.saltstack-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e915";
  top: 2px;
  font-size: 14px;
}

.sas-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e95a";
  top: 2px;
}

.sbt-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9d2";
  top: 2px;
  font-size: 14px;
}

.scd-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9a2";
  top: 2px;
}

.scad-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e911";
  top: 2px;
  font-size: 14px;
}

.scheme-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "λ";
  top: 2px;
}

.scilab-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9a9";
  top: 3px;
  font-size: 18px;
  left: -1px;
  -webkit-font-smoothing: subpixel-antialiased;
}

.scrutinizer-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9d4";
  top: 2px;
  font-size: 14px;
}

.self-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9a8";
  top: 3px;
  font-size: 16px;
  text-shadow: 0 0 0;
  transform: scale(1.2);
}

.sf-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9db";
  top: 2px;
}

.shen-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9a7";
  top: 2px;
  font-size: 16px;
}

.shopify-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9cf";
  top: 2px;
}

.shuriken-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "✫";
  top: 2px;
  font-size: 14px;
}

.sigils-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "🝤";
  top: 3px;
  font-size: 16px;
  text-shadow: 0 0 0;
}

.silverstripe-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e800";
  top: 2px;
}

.sketch-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e927";
  top: 2px;
}

.slash-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9a6";
  top: 2px;
}

.snyk-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea1c";
  top: 2px;
  font-size: 16px;
}

.sparql-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e959";
  top: 2px;
}

.sqf-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9a5";
  top: 1px;
  text-shadow: 0 0 0;
}

.sqlite-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9dd";
  top: 3px;
}

.stan-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9a4";
  top: 2px;
}

.stata-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9a3";
  top: 2px;
}

.storyist-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9ef";
  top: 2px;
  font-size: 16px;
}

.strings-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9e0";
  top: 2px;
}

.stylelint-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e93d";
  top: 2px;
}

.stylus-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "s";
  top: 2px;
  left: 1px;
}

.sublime-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e986";
  top: 2px;
}

.svn-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea17";
  top: 2px;
}

.sysverilog-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9c3";
  top: 2px;
}

.tag-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\f015";
  top: 2px;
  font-size: 14px;
}

.tcl-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e956";
  top: 2px;
  font-size: 16px;
}

.terminal-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\f0c8";
  top: 2px;
  font-size: 14px;
}

.tern-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "🕊";
  top: 4px;
  font-size: 16px;
}

.terraform-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e916";
  top: 1px;
  font-size: 14px;
}

.tex-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e600";
  top: 4px;
  font-size: 16px;
  -webkit-font-smoothing: subpixel-antialiased;
}

.textile-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "t";
  top: 2px;
}

.textmate-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "™";
  top: 2px;
  font-size: 16px;
}

.thor-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9d8";
  top: 2px;
}

.ts-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "ʦ";
  top: 1px;
  font-size: 14px;
}

.tsx-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9e7";
  top: 1px;
  font-size: 14px;
}

.turing-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9b6";
  top: 2px;
}

.txl-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9c1";
  top: 2px;
}

.typedoc-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9fe";
  top: 2px;
}

.typings-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9df";
  top: 2px;
}

.uno-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9b3";
  top: 2px;
}

.unreal-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "u";
  top: 2px;
}

.urweb-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9ba";
  top: 4px;
  font-size: 18px;
  left: -1px;
  text-shadow: 0 0 0;
}

.webpack-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e91e";
  top: 3px;
}

.wercker-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea19";
  top: 2px;
}

.word-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9ed";
  top: 2px;
}

.v8-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea1f";
  top: 3px;
  font-size: 16px;
}

.vagrant-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "V";
  top: 2px;
  font-size: 14px;
}

.varnish-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9b4";
  top: 1px;
  font-size: 14px;
}

.verilog-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e949";
  top: 2px;
}

.vhdl-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9aa";
  top: 2px;
}

.video-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\f057";
  top: 1px;
  font-size: 14px;
}

.vue-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e906";
  top: 3px;
}

.x10-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "Ⅹ";
  top: 2px;
}

.xmos-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "X";
  top: 1px;
  font-size: 14px;
}

.xojo-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9af";
  top: 2px;
}

.xpages-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9c5";
  top: 2px;
}

.xtend-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9c6";
  top: 2px;
}

.yang-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "☯";
  top: 2px;
}

.yarn-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea1a";
  top: 2px;
  font-size: 16px;
}

.yui-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\ea00";
  top: 2px;
}

.zbrush-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9f2";
  top: 2px;
  font-size: 16px;
}

.zephir-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9c7";
  top: 2px;
  -webkit-font-smoothing: subpixel-antialiased;
}

.zimpl-icon:before {
  font-family: file-icons;
  font-size: 15px;
  content: "\e9c8";
  top: 2px;
  font-size: 16px;
  left: 1px;
}

.d42-expaned-wrapper {
  position: absolute;
  min-width: 60px;
  z-index: 10;
  background-color: var(--d42-tree__operation-pannel-color);
}

.d42-expaned-wrapper.bottom {
  right: 0;
}

.d42-mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: transparent;
  z-index: 9;
}

.d42-expaned-wrapper {
  width: fit-content;
}

.d42-expaned-wrapper .d42-operation-panel {
  min-width: 120px;
  background-color: var(--d42-tree__operation-pannel-color);
  padding: 10px 4px;
  border-radius: 4px;
}

.d42-expaned-wrapper .d42-operation-panel .d42-panel-item {
  padding: 0 10px;
  height: 36px;
  line-height: 36px;
  color: var(--d42-tree__operation-pannel-item-color);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 4px;
  font-family: PingFang SC, IBM Plex Sans, sans-serif;
  font-size: 14px;
  white-space: nowrap;
}

.d42-expaned-wrapper .d42-operation-panel .d42-panel-item:hover {
  background-color: var(--d42-tree__operation-pannel-item--hover-bg);
  color: var(--d42-tree__operation-pannel-item-color--hover);
}

.d42-expaned-wrapper .d42-operation-panel .d42-panel-item.delete:hover {
  color: var(--d42-tree__operation-pannel-item--delete-hover-color);
}

.vjs-modal-dialog .vjs-modal-dialog-content, .video-js .vjs-modal-dialog, .vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  text-align: center;
}

@font-face {
  font-family: VideoJS;
  src: url(data:application/font-woff;charset=utf-8;base64,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) format("woff");
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play, .video-js .vjs-play-control .vjs-icon-placeholder, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-play:before, .video-js .vjs-play-control .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "\f101";
}

.vjs-icon-play-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-play-circle:before {
  content: "\f102";
}

.vjs-icon-pause, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-pause:before, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before {
  content: "\f103";
}

.vjs-icon-volume-mute, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-mute:before, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {
  content: "\f104";
}

.vjs-icon-volume-low, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-low:before, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before {
  content: "\f105";
}

.vjs-icon-volume-mid, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-mid:before, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before {
  content: "\f106";
}

.vjs-icon-volume-high, .video-js .vjs-mute-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-high:before, .video-js .vjs-mute-control .vjs-icon-placeholder:before {
  content: "\f107";
}

.vjs-icon-fullscreen-enter, .video-js .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-fullscreen-enter:before, .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f108";
}

.vjs-icon-fullscreen-exit, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-fullscreen-exit:before, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f109";
}

.vjs-icon-square {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-square:before {
  content: "\f10a";
}

.vjs-icon-spinner {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-spinner:before {
  content: "\f10b";
}

.vjs-icon-subtitles, .video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-subtitles-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-subtitles:before, .video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before {
  content: "\f10c";
}

.vjs-icon-captions, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-captions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-captions:before, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-captions-button .vjs-icon-placeholder:before {
  content: "\f10d";
}

.vjs-icon-chapters, .video-js .vjs-chapters-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-chapters:before, .video-js .vjs-chapters-button .vjs-icon-placeholder:before {
  content: "\f10e";
}

.vjs-icon-share {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-share:before {
  content: "\f10f";
}

.vjs-icon-cog {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cog:before {
  content: "\f110";
}

.vjs-icon-circle, .vjs-seek-to-live-control .vjs-icon-placeholder, .video-js .vjs-volume-level, .video-js .vjs-play-progress {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle:before, .vjs-seek-to-live-control .vjs-icon-placeholder:before, .video-js .vjs-volume-level:before, .video-js .vjs-play-progress:before {
  content: "\f111";
}

.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle-outline:before {
  content: "\f112";
}

.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle-inner-circle:before {
  content: "\f113";
}

.vjs-icon-hd {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-hd:before {
  content: "\f114";
}

.vjs-icon-cancel, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cancel:before, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before {
  content: "\f115";
}

.vjs-icon-replay, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-replay:before, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before {
  content: "\f116";
}

.vjs-icon-facebook {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-facebook:before {
  content: "\f117";
}

.vjs-icon-gplus {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-gplus:before {
  content: "\f118";
}

.vjs-icon-linkedin {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-linkedin:before {
  content: "\f119";
}

.vjs-icon-twitter {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-twitter:before {
  content: "\f11a";
}

.vjs-icon-tumblr {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-tumblr:before {
  content: "\f11b";
}

.vjs-icon-pinterest {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-pinterest:before {
  content: "\f11c";
}

.vjs-icon-audio-description, .video-js .vjs-descriptions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-audio-description:before, .video-js .vjs-descriptions-button .vjs-icon-placeholder:before {
  content: "\f11d";
}

.vjs-icon-audio, .video-js .vjs-audio-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-audio:before, .video-js .vjs-audio-button .vjs-icon-placeholder:before {
  content: "\f11e";
}

.vjs-icon-next-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-next-item:before {
  content: "\f11f";
}

.vjs-icon-previous-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-previous-item:before {
  content: "\f120";
}

.vjs-icon-picture-in-picture-enter, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-picture-in-picture-enter:before, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f121";
}

.vjs-icon-picture-in-picture-exit, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-picture-in-picture-exit:before, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f122";
}

.video-js {
  display: block;
  vertical-align: top;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  position: relative;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  word-break: initial;
}

.video-js:-moz-full-screen {
  position: absolute;
}

.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}

.video-js[tabindex="-1"] {
  outline: none;
}

.video-js *,
.video-js *:before,
.video-js *:after {
  box-sizing: inherit;
}

.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3,
.video-js.vjs-9-16,
.video-js.vjs-1-1 {
  width: 100%;
  max-width: 100%;
}

.video-js.vjs-fluid:not(.vjs-audio-only-mode),
.video-js.vjs-16-9:not(.vjs-audio-only-mode),
.video-js.vjs-4-3:not(.vjs-audio-only-mode),
.video-js.vjs-9-16:not(.vjs-audio-only-mode),
.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
  height: 0;
}

.video-js.vjs-16-9:not(.vjs-audio-only-mode) {
  padding-top: 56.25%;
}

.video-js.vjs-4-3:not(.vjs-audio-only-mode) {
  padding-top: 75%;
}

.video-js.vjs-9-16:not(.vjs-audio-only-mode) {
  padding-top: 177.7777777778%;
}

.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
  padding-top: 100%;
}

.video-js.vjs-fill:not(.vjs-audio-only-mode) {
  width: 100%;
  height: 100%;
}

.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-js.vjs-audio-only-mode .vjs-tech {
  display: none;
}

body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%;
}

.vjs-full-window .video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.video-js.vjs-fullscreen:not(.vjs-ios-native-fs) {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
}

.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}

.vjs-hidden {
  display: none !important;
}

.vjs-disabled {
  opacity: 0.5;
  cursor: default;
}

.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px;
}

.vjs-lock-showing {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.vjs-no-js {
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0px auto;
}

.vjs-no-js a,
.vjs-no-js a:visited {
  color: #66A8CC;
}

.video-js .vjs-big-play-button {
  font-size: 3em;
  line-height: 1.5em;
  height: 1.63332em;
  width: 3em;
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  border: 0.06666em solid #fff;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  border-radius: 0.3em;
  transition: all 0.4s;
}

.vjs-big-play-centered .vjs-big-play-button {
  top: 50%;
  left: 50%;
  margin-top: -0.81666em;
  margin-left: -1.5em;
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
  border-color: #fff;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
  transition: all 0s;
}

.vjs-controls-disabled .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button,
.vjs-error .vjs-big-play-button {
  display: none;
}

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
  display: block;
}

.video-js button {
  background: none;
  border: none;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
  text-decoration: none;
  transition: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.vjs-control .vjs-button {
  width: 100%;
  height: 100%;
}

.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: 0.5em;
  z-index: 2;
}

.video-js .vjs-modal-dialog {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
  overflow: auto;
}

.video-js .vjs-modal-dialog > * {
  box-sizing: border-box;
}

.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1;
}

.vjs-menu-button {
  cursor: pointer;
}

.vjs-menu-button.vjs-disabled {
  cursor: default;
}

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
  display: none;
}

.vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: auto;
}

.vjs-menu .vjs-menu-content > * {
  box-sizing: border-box;
}

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
  display: none;
}

.vjs-menu li {
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}

.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover,
.js-focus-visible .vjs-menu li.vjs-menu-item:hover {
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}

.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover,
.js-focus-visible .vjs-menu li.vjs-selected:hover {
  background-color: #fff;
  color: #2B333F;
}

.video-js .vjs-menu *:not(.vjs-selected):focus:not(:focus-visible),
.js-focus-visible .vjs-menu *:not(.vjs-selected):focus:not(.focus-visible) {
  background: none;
}

.vjs-menu li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}

.vjs-menu-button-popup .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  width: 10em;
  left: -3em;
  height: 0em;
  margin-bottom: 1.5em;
  border-top-color: rgba(43, 51, 63, 0.7);
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  max-height: 15em;
}

.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 5em;
}

.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 10em;
}

.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 14em;
}

.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 25em;
}

.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu,
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
  display: block;
}

.video-js .vjs-menu-button-inline {
  transition: all 0.4s;
  overflow: hidden;
}

.video-js .vjs-menu-button-inline:before {
  width: 2.222222222em;
}

.video-js .vjs-menu-button-inline:hover,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline.vjs-slider-active,
.video-js.vjs-no-flex .vjs-menu-button-inline {
  width: 12em;
}

.vjs-menu-button-inline .vjs-menu {
  opacity: 0;
  height: 100%;
  width: auto;
  position: absolute;
  left: 4em;
  top: 0;
  padding: 0;
  margin: 0;
  transition: all 0.4s;
}

.vjs-menu-button-inline:hover .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  display: block;
  opacity: 1;
}

.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
  display: block;
  opacity: 1;
  position: relative;
  width: auto;
}

.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  width: auto;
}

.vjs-menu-button-inline .vjs-menu-content {
  width: auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.video-js .vjs-control-bar {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}

.vjs-has-started .vjs-control-bar,
.vjs-audio-only-mode .vjs-control-bar {
  display: flex;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.1s, opacity 0.1s;
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  visibility: visible;
  opacity: 0;
  pointer-events: none;
  transition: visibility 1s, opacity 1s;
}

.vjs-controls-disabled .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar,
.vjs-error .vjs-control-bar {
  display: none !important;
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar,
.vjs-audio-only-mode.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vjs-has-started.vjs-no-flex .vjs-control-bar {
  display: table;
}

.video-js .vjs-control {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 4em;
  flex: none;
}

.video-js .vjs-control.vjs-visible-text {
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-button > .vjs-icon-placeholder:before {
  font-size: 1.8em;
  line-height: 1.67;
}

.vjs-button > .vjs-icon-placeholder {
  display: block;
}

.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before,
.video-js .vjs-control:focus {
  text-shadow: 0em 0em 1em white;
}

.video-js *:not(.vjs-visible-text) > .vjs-control-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.vjs-no-flex .vjs-control {
  display: table-cell;
  vertical-align: middle;
}

.video-js .vjs-custom-control-spacer {
  display: none;
}

.video-js .vjs-progress-control {
  cursor: pointer;
  flex: auto;
  display: flex;
  align-items: center;
  min-width: 4em;
  touch-action: none;
}

.video-js .vjs-progress-control.disabled {
  cursor: default;
}

.vjs-live .vjs-progress-control {
  display: none;
}

.vjs-liveui .vjs-progress-control {
  display: flex;
  align-items: center;
}

.vjs-no-flex .vjs-progress-control {
  width: auto;
}

.video-js .vjs-progress-holder {
  flex: auto;
  transition: all 0.2s;
  height: 0.3em;
}

.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 0 10px;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder {
  font-size: 1.6666666667em;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
  font-size: 1em;
}

.video-js .vjs-progress-holder .vjs-play-progress,
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 0;
}

.video-js .vjs-play-progress {
  background-color: #fff;
}

.video-js .vjs-play-progress:before {
  font-size: 0.9em;
  position: absolute;
  right: -0.5em;
  top: -0.3333333333em;
  z-index: 1;
}

.video-js .vjs-load-progress {
  background: rgba(115, 133, 159, 0.5);
}

.video-js .vjs-load-progress div {
  background: rgba(115, 133, 159, 0.75);
}

.video-js .vjs-time-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
  display: none;
}

.video-js .vjs-progress-control:hover .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip {
  display: block;
  font-size: 0.6em;
  visibility: visible;
}

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
  font-size: 1em;
}

.video-js .vjs-progress-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  z-index: 1;
}

.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  z-index: 0;
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  display: none;
}

.vjs-mouse-display .vjs-time-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.video-js .vjs-slider {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 0.45em 0 0.45em;
  /* iOS Safari */
  -webkit-touch-callout: none;
  /* Safari */
  -webkit-user-select: none;
  /* Konqueror HTML */
  /* Firefox */
  -moz-user-select: none;
  /* Internet Explorer/Edge */
  -ms-user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
  user-select: none;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}

.video-js .vjs-slider.disabled {
  cursor: default;
}

.video-js .vjs-slider:focus {
  text-shadow: 0em 0em 1em white;
  box-shadow: 0 0 1em #fff;
}

.video-js .vjs-mute-control {
  cursor: pointer;
  flex: none;
}

.video-js .vjs-volume-control {
  cursor: pointer;
  margin-right: 1em;
  display: flex;
}

.video-js .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
}

.video-js .vjs-volume-panel .vjs-volume-control {
  visibility: visible;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin-left: -1px;
}

.video-js .vjs-volume-panel {
  transition: width 1s;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control, .video-js .vjs-volume-panel:active .vjs-volume-control, .video-js .vjs-volume-panel:focus .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control:active, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active {
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  margin-right: 0;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical {
  left: -3.5em;
  transition: left 0s;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
  width: 10em;
  transition: width 0.1s;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
  width: 4em;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  height: 8em;
  width: 3em;
  left: -3000em;
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;
}

.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: none;
}

.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  position: absolute;
  bottom: 3em;
  left: 0.5em;
}

.video-js .vjs-volume-panel {
  display: flex;
}

.video-js .vjs-volume-bar {
  margin: 1.35em 0.45em;
}

.vjs-volume-bar.vjs-slider-horizontal {
  width: 5em;
  height: 0.3em;
}

.vjs-volume-bar.vjs-slider-vertical {
  width: 0.3em;
  height: 5em;
  margin: 1.35em auto;
}

.video-js .vjs-volume-level {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
}

.video-js .vjs-volume-level:before {
  position: absolute;
  font-size: 0.9em;
  z-index: 1;
}

.vjs-slider-vertical .vjs-volume-level {
  width: 0.3em;
}

.vjs-slider-vertical .vjs-volume-level:before {
  top: -0.5em;
  left: -0.3em;
  z-index: 1;
}

.vjs-slider-horizontal .vjs-volume-level {
  height: 0.3em;
}

.vjs-slider-horizontal .vjs-volume-level:before {
  top: -0.3em;
  right: -0.5em;
}

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
  width: 4em;
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%;
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%;
}

.video-js .vjs-volume-vertical {
  width: 3em;
  height: 8em;
  bottom: 8em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}

.video-js .vjs-volume-horizontal .vjs-menu {
  left: -2em;
}

.video-js .vjs-volume-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-volume-control:hover .vjs-volume-tooltip,
.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
  display: block;
  font-size: 1em;
  visibility: visible;
}

.video-js .vjs-volume-vertical:hover .vjs-volume-tooltip,
.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
  left: 1em;
  top: -12px;
}

.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip {
  font-size: 1em;
}

.video-js .vjs-volume-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  z-index: 1;
}

.video-js .vjs-volume-horizontal .vjs-mouse-display {
  width: 1px;
  height: 100%;
}

.vjs-no-flex .vjs-volume-control .vjs-mouse-display {
  z-index: 0;
}

.video-js .vjs-volume-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-volume-control .vjs-mouse-display {
  display: none;
}

.vjs-mouse-display .vjs-volume-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.vjs-poster {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-color: #000000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}

.vjs-has-started .vjs-poster,
.vjs-using-native-controls .vjs-poster {
  display: none;
}

.vjs-audio.vjs-has-started .vjs-poster,
.vjs-has-started.vjs-audio-poster-mode .vjs-poster {
  display: block;
}

.video-js .vjs-live-control {
  display: flex;
  align-items: flex-start;
  flex: auto;
  font-size: 1em;
  line-height: 3em;
}

.vjs-no-flex .vjs-live-control {
  display: table-cell;
  width: auto;
  text-align: left;
}

.video-js:not(.vjs-live) .vjs-live-control,
.video-js.vjs-liveui .vjs-live-control {
  display: none;
}

.video-js .vjs-seek-to-live-control {
  align-items: center;
  cursor: pointer;
  flex: none;
  display: inline-flex;
  height: 100%;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 1em;
  line-height: 3em;
  width: auto;
  min-width: 4em;
}

.vjs-no-flex .vjs-seek-to-live-control {
  display: table-cell;
  width: auto;
  text-align: left;
}

.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
  display: none;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
  cursor: auto;
}

.vjs-seek-to-live-control .vjs-icon-placeholder {
  margin-right: 0.5em;
  color: #888;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
  color: red;
}

.video-js .vjs-time-control {
  flex: none;
  font-size: 1em;
  line-height: 3em;
  min-width: 2em;
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-live .vjs-time-control {
  display: none;
}

.video-js .vjs-current-time,
.vjs-no-flex .vjs-current-time {
  display: none;
}

.video-js .vjs-duration,
.vjs-no-flex .vjs-duration {
  display: none;
}

.vjs-time-divider {
  display: none;
  line-height: 3em;
}

.vjs-live .vjs-time-divider {
  display: none;
}

.video-js .vjs-play-control {
  cursor: pointer;
}

.video-js .vjs-play-control .vjs-icon-placeholder {
  flex: none;
}

.vjs-text-track-display {
  position: absolute;
  bottom: 3em;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}

.video-js.vjs-controls-disabled .vjs-text-track-display,
.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}

.video-js .vjs-text-track {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em;
}

.vjs-subtitles {
  color: #fff;
}

.vjs-captions {
  color: #fc6;
}

.vjs-tt-cue {
  display: block;
}

video::-webkit-media-text-track-display {
  transform: translateY(-3em);
}

.video-js.vjs-controls-disabled video::-webkit-media-text-track-display,
.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
  transform: translateY(-1.5em);
}

.video-js .vjs-picture-in-picture-control {
  cursor: pointer;
  flex: none;
}

.video-js.vjs-audio-only-mode .vjs-picture-in-picture-control {
  display: none;
}

.video-js .vjs-fullscreen-control {
  cursor: pointer;
  flex: none;
}

.video-js.vjs-audio-only-mode .vjs-fullscreen-control {
  display: none;
}

.vjs-playback-rate > .vjs-menu-button,
.vjs-playback-rate .vjs-playback-rate-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-playback-rate .vjs-playback-rate-value {
  pointer-events: none;
  font-size: 1.5em;
  line-height: 2;
  text-align: center;
}

.vjs-playback-rate .vjs-menu {
  width: 4em;
  left: 0em;
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center;
}

.vjs-error .vjs-error-display:before {
  color: #fff;
  content: "X";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4em;
  left: 0;
  line-height: 1;
  margin-top: -0.5em;
  position: absolute;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center;
  top: 50%;
  vertical-align: middle;
  width: 100%;
}

.vjs-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.85;
  text-align: left;
  border: 6px solid rgba(43, 51, 63, 0.7);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  visibility: hidden;
}

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
  display: block;
  -webkit-animation: vjs-spinner-show 0s linear 0.3s forwards;
  animation: vjs-spinner-show 0s linear 0.3s forwards;
}

.vjs-loading-spinner:before,
.vjs-loading-spinner:after {
  content: "";
  position: absolute;
  margin: -6px;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after {
  -webkit-animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
  border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
  border-top-color: white;
  -webkit-animation-delay: 0.44s;
  animation-delay: 0.44s;
}

@keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}
@-webkit-keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}
@keyframes vjs-spinner-spin {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes vjs-spinner-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f;
  }
  20% {
    border-top-color: #73859f;
  }
  35% {
    border-top-color: white;
  }
  60% {
    border-top-color: #73859f;
  }
  100% {
    border-top-color: #73859f;
  }
}
@-webkit-keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f;
  }
  20% {
    border-top-color: #73859f;
  }
  35% {
    border-top-color: white;
  }
  60% {
    border-top-color: #73859f;
  }
  100% {
    border-top-color: #73859f;
  }
}
.video-js.vjs-audio-only-mode .vjs-captions-button {
  display: none;
}

.vjs-chapters-button .vjs-menu ul {
  width: 24em;
}

.video-js.vjs-audio-only-mode .vjs-descriptions-button {
  display: none;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: "\f10d";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-audio-only-mode .vjs-subs-caps-button {
  display: none;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: " \f11d";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-layout-small .vjs-current-time,
.video-js.vjs-layout-small .vjs-time-divider,
.video-js.vjs-layout-small .vjs-duration,
.video-js.vjs-layout-small .vjs-remaining-time,
.video-js.vjs-layout-small .vjs-playback-rate,
.video-js.vjs-layout-small .vjs-volume-control, .video-js.vjs-layout-x-small .vjs-current-time,
.video-js.vjs-layout-x-small .vjs-time-divider,
.video-js.vjs-layout-x-small .vjs-duration,
.video-js.vjs-layout-x-small .vjs-remaining-time,
.video-js.vjs-layout-x-small .vjs-playback-rate,
.video-js.vjs-layout-x-small .vjs-volume-control, .video-js.vjs-layout-tiny .vjs-current-time,
.video-js.vjs-layout-tiny .vjs-time-divider,
.video-js.vjs-layout-tiny .vjs-duration,
.video-js.vjs-layout-tiny .vjs-remaining-time,
.video-js.vjs-layout-tiny .vjs-playback-rate,
.video-js.vjs-layout-tiny .vjs-volume-control {
  display: none;
}

.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover {
  width: auto;
  width: initial;
}

.video-js.vjs-layout-x-small .vjs-progress-control, .video-js.vjs-layout-tiny .vjs-progress-control {
  display: none;
}

.video-js.vjs-layout-x-small .vjs-custom-control-spacer {
  flex: auto;
  display: block;
}

.video-js.vjs-layout-x-small.vjs-no-flex .vjs-custom-control-spacer {
  width: auto;
}

.vjs-modal-dialog.vjs-text-track-settings {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.75);
  color: #fff;
  height: 70%;
}

.vjs-text-track-settings .vjs-modal-dialog-content {
  display: table;
}

.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-font,
.vjs-text-track-settings .vjs-track-settings-controls {
  display: table-cell;
}

.vjs-text-track-settings .vjs-track-settings-controls {
  text-align: right;
  vertical-align: bottom;
}

@supports (display: grid) {
  .vjs-text-track-settings .vjs-modal-dialog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding: 20px 24px 0px 24px;
  }
  .vjs-track-settings-controls .vjs-default-button {
    margin-bottom: 20px;
  }
  .vjs-text-track-settings .vjs-track-settings-controls {
    grid-column: 1/-1;
  }
  .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content {
    grid-template-columns: 1fr;
  }
}
.vjs-track-setting > select {
  margin-right: 1em;
  margin-bottom: 0.5em;
}

.vjs-text-track-settings fieldset {
  margin: 5px;
  padding: 3px;
  border: none;
}

.vjs-text-track-settings fieldset span {
  display: inline-block;
}

.vjs-text-track-settings fieldset span > select {
  max-width: 7.3em;
}

.vjs-text-track-settings legend {
  color: #fff;
  margin: 0 0 5px 0;
}

.vjs-text-track-settings .vjs-label {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  display: block;
  margin: 0 0 5px 0;
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.vjs-track-settings-controls button:focus,
.vjs-track-settings-controls button:active {
  outline-style: solid;
  outline-width: medium;
  background-image: linear-gradient(0deg, #fff 88%, #73859f 100%);
}

.vjs-track-settings-controls button:hover {
  color: rgba(43, 51, 63, 0.75);
}

.vjs-track-settings-controls button {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff 88%, #73859f 100%);
  color: #2B333F;
  cursor: pointer;
  border-radius: 2px;
}

.vjs-track-settings-controls .vjs-default-button {
  margin-right: 1em;
}

@media print {
  .video-js > *:not(.vjs-tech):not(.vjs-poster) {
    visibility: hidden;
  }
}
.vjs-resize-manager {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1000;
}

.js-focus-visible .video-js *:focus:not(.focus-visible) {
  outline: none;
}

.video-js *:focus:not(:focus-visible) {
  outline: none;
}

/*!
 * Bootstrap v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 0.875em;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px;
  }
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.row-cols-4 > * {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-sm-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-md-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-lg-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-xl-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7abaff;
}

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}

.form-row > .col > .valid-tooltip,
.form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated select.form-control:valid, select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.form-row > .col > .invalid-tooltip,
.form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated select.form-control:invalid, select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}
.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}

.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}

.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.width {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.width {
    transition: none;
  }
}
.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group:not(.has-validation) > .form-control:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group.has-validation > .form-control:nth-last-child(n+3),
.input-group.has-validation > .custom-select:nth-last-child(n+3),
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label,
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: -ms-flexbox;
  display: flex;
}

.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
}

.custom-control-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: 1px solid #adb5bd;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50%/50% 50% no-repeat;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  -webkit-transform: translateX(0.75rem);
  transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  display: none;
}

.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-file-input[disabled] ~ .custom-file-label,
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-range:focus {
  outline: 0;
}

.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
  cursor: default;
}

.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}
.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}
.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .card-group > .card {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}
.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}
.accordion {
  overflow-anchor: none;
}

.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #007bff;
}

a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: #0062cc;
}

a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

a.badge-secondary:hover, a.badge-secondary:focus {
  color: #fff;
  background-color: #545b62;
}

a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}

a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: #1e7e34;
}

a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: #117a8b;
}

a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: #d39e00;
}

a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: #bd2130;
}

a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}

a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}

a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}
.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-primary hr {
  border-top-color: #9fcdff;
}

.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-success hr {
  border-top-color: #b1dfbb;
}

.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
  animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
    animation: none;
  }
}
.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-body {
  -ms-flex: 1;
  flex: 1;
}

.list-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  -ms-flex-direction: row;
  flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}

.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}

.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  -ms-flex-preferred-size: 350px;
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}

.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}

.toast.showing {
  opacity: 1;
}

.toast.show {
  display: block;
  opacity: 1;
}

.toast.hide {
  display: none;
}

.toast-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}

.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=top] > .arrow {
  bottom: calc(-0.5rem - 1px);
}

.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}

.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}

.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow {
  top: calc(-0.5rem - 1px);
}

.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}

.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  -webkit-transform: none;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: 50%/100% 100% no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentcolor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
  animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentcolor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: 0.75s linear infinite spinner-grow;
  animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
  }
}
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: -webkit-sticky) or (position: sticky) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0056b3 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

/*!
 * Bootstrap Grid v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px;
  }
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.row-cols-4 > * {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-sm-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-md-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-lg-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-xl-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-bacteria:before {
  content: "\e059";
}

.fa-bacterium:before {
  content: "\e05a";
}

.fa-bahai:before {
  content: "\f666";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-balance-scale-left:before {
  content: "\f515";
}

.fa-balance-scale-right:before {
  content: "\f516";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-biking:before {
  content: "\f84a";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-none:before {
  content: "\f850";
}

.fa-border-style:before {
  content: "\f853";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-box-tissue:before {
  content: "\e05b";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-caravan:before {
  content: "\f8ff";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudflare:before {
  content: "\e07d";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-alt:before {
  content: "\f422";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dailymotion:before {
  content: "\e052";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-deezer:before {
  content: "\e077";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-disease:before {
  content: "\f7fa";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edge-legacy:before {
  content: "\e078";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-alt:before {
  content: "\f424";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fan:before {
  content: "\f863";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-faucet:before {
  content: "\e005";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-firefox-browser:before {
  content: "\e007";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-pay:before {
  content: "\e079";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guilded:before {
  content: "\e07e";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-medical:before {
  content: "\e05c";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-holding-water:before {
  content: "\f4c1";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-sparkles:before {
  content: "\e05d";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-hands-wash:before {
  content: "\e05e";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-handshake-alt-slash:before {
  content: "\e05f";
}

.fa-handshake-slash:before {
  content: "\e060";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-cowboy:before {
  content: "\f8c0";
}

.fa-hat-cowboy-side:before {
  content: "\f8c1";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-head-side-cough:before {
  content: "\e061";
}

.fa-head-side-cough-slash:before {
  content: "\e062";
}

.fa-head-side-mask:before {
  content: "\e063";
}

.fa-head-side-virus:before {
  content: "\e064";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hive:before {
  content: "\e07f";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hospital-user:before {
  content: "\f80d";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-house-user:before {
  content: "\e065";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-icons:before {
  content: "\f86d";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-ideal:before {
  content: "\e013";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-innosoft:before {
  content: "\e080";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-instagram-square:before {
  content: "\e055";
}

.fa-instalod:before {
  content: "\e081";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-house:before {
  content: "\e066";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lungs:before {
  content: "\f604";
}

.fa-lungs-virus:before {
  content: "\e067";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microblog:before {
  content: "\e01a";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mixer:before {
  content: "\e056";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mouse:before {
  content: "\f8cc";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-octopus-deploy:before {
  content: "\e082";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-arrows:before {
  content: "\e068";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-perbyte:before {
  content: "\e083";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-alt:before {
  content: "\f879";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-square-alt:before {
  content: "\f87b";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-photo-video:before {
  content: "\f87c";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-square:before {
  content: "\e01e";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-plane-slash:before {
  content: "\e069";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pump-medical:before {
  content: "\e06a";
}

.fa-pump-soap:before {
  content: "\e06b";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-record-vinyl:before {
  content: "\f8d9";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-remove-format:before {
  content: "\f87d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-rust:before {
  content: "\e07a";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-shield-virus:before {
  content: "\e06c";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopify:before {
  content: "\e057";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sink:before {
  content: "\e06d";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-soap:before {
  content: "\e06e";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-spell-check:before {
  content: "\f891";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-stopwatch-20:before {
  content: "\e06f";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-store-alt-slash:before {
  content: "\e070";
}

.fa-store-slash:before {
  content: "\e071";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toilet-paper-slash:before {
  content: "\e072";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-trailer:before {
  content: "\e041";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-trello:before {
  content: "\f181";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-uncharted:before {
  content: "\e084";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-unity:before {
  content: "\e049";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-unsplash:before {
  content: "\e07c";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-users-slash:before {
  content: "\e073";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-vest:before {
  content: "\e085";
}

.fa-vest-patches:before {
  content: "\e086";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-virus:before {
  content: "\e074";
}

.fa-virus-slash:before {
  content: "\e075";
}

.fa-viruses:before {
  content: "\e076";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-watchman-monitoring:before {
  content: "\e087";
}

.fa-water:before {
  content: "\f773";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wodu:before {
  content: "\e088";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/@fortawesome/fontawesome-free/webfonts/fa-solid-900-9e3bdf4b406af9baa46bf60e1903449bb4314aeb868fcbae3e95de479633205e.eot);
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/@fortawesome/fontawesome-free/webfonts/fa-solid-900-9e3bdf4b406af9baa46bf60e1903449bb4314aeb868fcbae3e95de479633205e.eot?#iefix) format("embedded-opentype"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/@fortawesome/fontawesome-free/webfonts/fa-solid-900-3700f19f26d7519a6dad2354a996452064156d978bc0bcfc6f74555e6a881bf6.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/@fortawesome/fontawesome-free/webfonts/fa-solid-900-7be9c1dc2418c499534a48ee49c2d27f4fef5a5aee4f30f75b4c9ae2e6a9c6da.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/@fortawesome/fontawesome-free/webfonts/fa-solid-900-a12cebc5d1f2b9dd9d81bb7f2dfc989ce35868092ef46c1098afb09f257d4c2b.ttf) format("truetype"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/@fortawesome/fontawesome-free/webfonts/fa-solid-900-33e728329ea58ca0ddc5f1002bb9a744a02d5679b12103ca30373e687aed1698.svg#fontawesome) format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/@fortawesome/fontawesome-free/webfonts/fa-regular-400-4a9a9ccf3ccc2ce775695dcdab2e36f48a6db5876a7acf2c6bcb76912af65c87.eot);
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/@fortawesome/fontawesome-free/webfonts/fa-regular-400-4a9a9ccf3ccc2ce775695dcdab2e36f48a6db5876a7acf2c6bcb76912af65c87.eot?#iefix) format("embedded-opentype"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/@fortawesome/fontawesome-free/webfonts/fa-regular-400-6cfa156c0f937f0ce08c02e342067be2f4ba4db29abba244f90c27a223f96acc.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/@fortawesome/fontawesome-free/webfonts/fa-regular-400-5cc917c41d445fd002c151f518d442eff06969dd30c4d155b9ec3693f74677df.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/@fortawesome/fontawesome-free/webfonts/fa-regular-400-ca2fb9c9ed4e86200e0b14a4fe17772d353db275c0cd506a43f15c28146001e3.ttf) format("truetype"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/@fortawesome/fontawesome-free/webfonts/fa-regular-400-164fd2bef125a58606a240ecb88eaf01039045bac6615b3c58c6260a03b4411d.svg#fontawesome) format("svg");
}
.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

/*!
 * Bootstrap v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --blue: #1890ff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #ed1c24;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #ed1c24;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #ed1c24;
  --light: #f8f9fa;
  --dark: #343a40;
  --blog-background: #f5f5f5;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #ed1c24;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #af0e14;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}
@media (max-width: 1200px) {
  legend {
    font-size: calc(1.275rem + 0.3vw);
  }
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.5rem;
}
@media (max-width: 1200px) {
  h1, .h1 {
    font-size: calc(1.375rem + 1.5vw);
  }
}

h2, .h2 {
  font-size: 2rem;
}
@media (max-width: 1200px) {
  h2, .h2 {
    font-size: calc(1.325rem + 0.9vw);
  }
}

h3, .h3 {
  font-size: 1.75rem;
}
@media (max-width: 1200px) {
  h3, .h3 {
    font-size: calc(1.3rem + 0.6vw);
  }
}

h4, .h4 {
  font-size: 1.5rem;
}
@media (max-width: 1200px) {
  h4, .h4 {
    font-size: calc(1.275rem + 0.3vw);
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .display-1 {
    font-size: calc(1.725rem + 5.7vw);
  }
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .display-2 {
    font-size: calc(1.675rem + 5.1vw);
  }
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .display-3 {
    font-size: calc(1.575rem + 3.9vw);
  }
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .display-4 {
    font-size: calc(1.475rem + 2.7vw);
  }
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 0.875em;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #fabfc2;
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #f6898d;
}

.table-hover .table-primary:hover {
  background-color: #f8a7ab;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #f8a7ab;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #fabfc2;
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #f6898d;
}

.table-hover .table-danger:hover {
  background-color: #f8a7ab;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f8a7ab;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-blog-background,
.table-blog-background > th,
.table-blog-background > td {
  background-color: #fcfcfc;
}
.table-blog-background th,
.table-blog-background td,
.table-blog-background thead th,
.table-blog-background tbody + tbody {
  border-color: #fafafa;
}

.table-hover .table-blog-background:hover {
  background-color: #efefef;
}
.table-hover .table-blog-background:hover > td,
.table-hover .table-blog-background:hover > th {
  background-color: #efefef;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #f69296;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.25);
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  appearance: none;
}

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}
.form-row > .col > .valid-tooltip, .form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated select.form-control:valid, select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #ed1c24;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(237, 28, 36, 0.9);
  border-radius: 0.25rem;
}
.form-row > .col > .invalid-tooltip, .form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #ed1c24;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ed1c24' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ed1c24' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #ed1c24;
  box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.25);
}

.was-validated select.form-control:invalid, select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #ed1c24;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ed1c24' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ed1c24' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #ed1c24;
  box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #ed1c24;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #ed1c24;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #ed1c24;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #f14b52;
  background-color: #f14b52;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #ed1c24;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #ed1c24;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #ed1c24;
  box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #ed1c24;
  border-color: #ed1c24;
}
.btn-primary:hover {
  color: #fff;
  background-color: #d21118;
  border-color: #c61017;
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #d21118;
  border-color: #c61017;
  box-shadow: 0 0 0 0.2rem rgba(240, 62, 69, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #ed1c24;
  border-color: #ed1c24;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #c61017;
  border-color: #ba0f15;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 62, 69, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #ed1c24;
  border-color: #ed1c24;
}
.btn-danger:hover {
  color: #fff;
  background-color: #d21118;
  border-color: #c61017;
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #d21118;
  border-color: #c61017;
  box-shadow: 0 0 0 0.2rem rgba(240, 62, 69, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #ed1c24;
  border-color: #ed1c24;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c61017;
  border-color: #ba0f15;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 62, 69, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-blog-background {
  color: #212529;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}
.btn-blog-background:hover {
  color: #212529;
  background-color: #e2e2e2;
  border-color: gainsboro;
}
.btn-blog-background:focus, .btn-blog-background.focus {
  color: #212529;
  background-color: #e2e2e2;
  border-color: gainsboro;
  box-shadow: 0 0 0 0.2rem rgba(213, 214, 214, 0.5);
}
.btn-blog-background.disabled, .btn-blog-background:disabled {
  color: #212529;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}
.btn-blog-background:not(:disabled):not(.disabled):active, .btn-blog-background:not(:disabled):not(.disabled).active, .show > .btn-blog-background.dropdown-toggle {
  color: #212529;
  background-color: gainsboro;
  border-color: #d5d5d5;
}
.btn-blog-background:not(:disabled):not(.disabled):active:focus, .btn-blog-background:not(:disabled):not(.disabled).active:focus, .show > .btn-blog-background.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(213, 214, 214, 0.5);
}

.btn-outline-primary {
  color: #ed1c24;
  border-color: #ed1c24;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #ed1c24;
  border-color: #ed1c24;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #ed1c24;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #ed1c24;
  border-color: #ed1c24;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #ed1c24;
  border-color: #ed1c24;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #ed1c24;
  border-color: #ed1c24;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #ed1c24;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #ed1c24;
  border-color: #ed1c24;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-blog-background {
  color: #f5f5f5;
  border-color: #f5f5f5;
}
.btn-outline-blog-background:hover {
  color: #212529;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}
.btn-outline-blog-background:focus, .btn-outline-blog-background.focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.5);
}
.btn-outline-blog-background.disabled, .btn-outline-blog-background:disabled {
  color: #f5f5f5;
  background-color: transparent;
}
.btn-outline-blog-background:not(:disabled):not(.disabled):active, .btn-outline-blog-background:not(:disabled):not(.disabled).active, .show > .btn-outline-blog-background.dropdown-toggle {
  color: #212529;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}
.btn-outline-blog-background:not(:disabled):not(.disabled):active:focus, .btn-outline-blog-background:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-blog-background.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #ed1c24;
  text-decoration: none;
}
.btn-link:hover {
  color: #af0e14;
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.width {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.width {
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #ed1c24;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group:not(.has-validation) > .form-control:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > .form-control:nth-last-child(n+3),
.input-group.has-validation > .custom-select:nth-last-child(n+3),
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label,
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  print-color-adjust: exact;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #ed1c24;
  background-color: #ed1c24;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #f69296;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #fac1c4;
  border-color: #fac1c4;
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: 1px solid #adb5bd;
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50%/50% 50% no-repeat;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #ed1c24;
  background-color: #ed1c24;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(237, 28, 36, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(237, 28, 36, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(237, 28, 36, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(237, 28, 36, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none;
}
.custom-select:focus {
  border-color: #f69296;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.25);
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #f69296;
  box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.custom-range:focus {
  outline: 0;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(237, 28, 36, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(237, 28, 36, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(237, 28, 36, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #ed1c24;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #fac1c4;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #ed1c24;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #fac1c4;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #ed1c24;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #fac1c4;
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #ed1c24;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  flex-wrap: nowrap;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: #fff;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}
.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #ed1c24;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #af0e14;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #ed1c24;
  border-color: #ed1c24;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #ed1c24;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: #c61017;
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #fff;
  background-color: #545b62;
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}
a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: #1e7e34;
}
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: #117a8b;
}
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}
a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: #d39e00;
}
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #ed1c24;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: #c61017;
}
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.badge-blog-background {
  color: #212529;
  background-color: #f5f5f5;
}
a.badge-blog-background:hover, a.badge-blog-background:focus {
  color: #212529;
  background-color: gainsboro;
}
a.badge-blog-background:focus, a.badge-blog-background.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #7b0f13;
  background-color: #fbd2d3;
  border-color: #fabfc2;
}
.alert-primary hr {
  border-top-color: #f8a7ab;
}
.alert-primary .alert-link {
  color: #4e090c;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}
.alert-secondary hr {
  border-top-color: #c8cbcf;
}
.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert-success hr {
  border-top-color: #b1dfbb;
}
.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.alert-info hr {
  border-top-color: #abdde5;
}
.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert-warning hr {
  border-top-color: #ffe8a1;
}
.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #7b0f13;
  background-color: #fbd2d3;
  border-color: #fabfc2;
}
.alert-danger hr {
  border-top-color: #f8a7ab;
}
.alert-danger .alert-link {
  color: #4e090c;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light hr {
  border-top-color: #ececf6;
}
.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.alert-dark hr {
  border-top-color: #b9bbbe;
}
.alert-dark .alert-link {
  color: #040505;
}

.alert-blog-background {
  color: #7f7f7f;
  background-color: #fdfdfd;
  border-color: #fcfcfc;
}
.alert-blog-background hr {
  border-top-color: #efefef;
}
.alert-blog-background .alert-link {
  color: #666666;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #ed1c24;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #ed1c24;
  border-color: #ed1c24;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #7b0f13;
  background-color: #fabfc2;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #7b0f13;
  background-color: #f8a7ab;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #7b0f13;
  border-color: #7b0f13;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #7b0f13;
  background-color: #fabfc2;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #7b0f13;
  background-color: #f8a7ab;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #7b0f13;
  border-color: #7b0f13;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.list-group-item-blog-background {
  color: #7f7f7f;
  background-color: #fcfcfc;
}
.list-group-item-blog-background.list-group-item-action:hover, .list-group-item-blog-background.list-group-item-action:focus {
  color: #7f7f7f;
  background-color: #efefef;
}
.list-group-item-blog-background.list-group-item-action.active {
  color: #fff;
  background-color: #7f7f7f;
  border-color: #7f7f7f;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
@media (max-width: 1200px) {
  .close {
    font-size: calc(1.275rem + 0.3vw);
  }
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast.showing {
  opacity: 1;
}
.toast.show {
  display: block;
  opacity: 1;
}
.toast.hide {
  display: none;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}
.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=top] > .arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}
.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}
.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}
.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: 50%/100% 100% no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentcolor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentcolor;
  border-radius: 50%;
  opacity: 0;
  animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    animation-duration: 1.5s;
  }
}
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #ed1c24 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #c61017 !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #ed1c24 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #c61017 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-blog-background {
  background-color: #f5f5f5 !important;
}

a.bg-blog-background:hover, a.bg-blog-background:focus,
button.bg-blog-background:hover,
button.bg-blog-background:focus {
  background-color: gainsboro !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #ed1c24 !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #ed1c24 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-blog-background {
  border-color: #f5f5f5 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #ed1c24 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #af0e14 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #ed1c24 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #af0e14 !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-blog-background {
  color: #f5f5f5 !important;
}

a.text-blog-background:hover, a.text-blog-background:focus {
  color: #cfcfcf !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
@media (min-width: 1441px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 1440px) {
  .container {
    max-width: 1100px;
  }
}
form .input-group .form-control-navbar {
  min-width: 150px;
}
form .form-control:not(.smb-input):focus {
  outline: none;
  box-shadow: none;
  border-color: #ced4da;
}
form .form-group select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url(https://assets.showmebug.com/smb-rails/f10d173/assets/drop_down-43697e388e4f0157d919ff73e88343625620ad956054cd42a7615b7bea7d6715.svg) no-repeat scroll right center transparent;
  padding-right: 14px;
  background-position-x: 98%;
}
form .form-group select::-ms-expand {
  display: none;
}
form .form-group .form-check {
  padding-left: 0;
}
form .form-group .form-check .form-check-input {
  margin-left: 0;
}
form .form-group .form-check .form-check-label {
  padding-left: 1.25rem;
}
form .card-body.form-body {
  padding: 0;
  margin-top: 40px;
}
form .card-body.form-body .form-group:not(:first-child) {
  margin-top: 30px;
}
form .card-body.form-body .form-group .form-control-label {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
form .card-body.form-body .form-group .form-control {
  width: 60%;
}
form .card-body.form-body .form-group textarea.form-control {
  height: 330px;
}
form .card-body.form-body .btn {
  font-size: 14px;
  border-radius: 5px;
}
form .card-body.form-body .btn.btn-return {
  border: 1px solid #999;
  color: #999;
  margin-left: 20px;
}
form .card-body.form-body .btn.btn-return:hover {
  opacity: 0.8;
}
form .actions {
  margin-top: 30px;
}

.modal .modal-dialog {
  max-width: 500px;
}
.modal .modal-dialog .modal-content {
  border: none;
  border-radius: 5px;
  font-size: 14px;
}
.modal .modal-dialog .modal-content .modal-header,
.modal .modal-dialog .modal-content .modal-body,
.modal .modal-dialog .modal-content .modal-footer {
  padding: 16px 24px;
}
.modal .modal-dialog .modal-content .modal-body,
.modal .modal-dialog .modal-content .modal-footer {
  padding-top: 0;
}
.modal .modal-dialog .modal-content .modal-header {
  border: none;
}
.modal .modal-dialog .modal-content .modal-header button.close {
  font-size: 18px;
  position: absolute;
  right: 1rem;
  top: 1rem;
  outline: unset;
}
.modal .modal-dialog .modal-content .modal-footer {
  border: none;
}
.modal .modal-dialog .modal-content .btn {
  border-radius: 5px;
}
.modal .modal-dialog .modal-content .btn:focus {
  outline: none;
  box-shadow: none;
}
.modal .modal-dialog .modal-content .actions {
  margin-top: 0;
}
.modal .modal-dialog .modal-content .modal-confirm-btn {
  padding: 8px 20px;
  background-color: #1890ff;
  border-radius: 3px;
  font-size: 14px;
  color: #fff;
  border: none;
}
.modal .modal-dialog .modal-content .modal-confirm-btn:hover {
  text-decoration: none;
  opacity: 0.9;
}
.modal .modal-dialog .modal-content input::placeholder {
  color: #999 !important;
}
.modal .modal-dialog .modal-content .modal-dismiss-btn {
  padding: 8px 24px;
  border-radius: 3px;
  border: 1px solid #cccccc;
  color: #333 !important;
  font-size: 14px;
  margin-right: 16px;
}
.modal .modal-dialog .modal-content .modal-dismiss-btn:hover {
  text-decoration: none;
  border-color: #999 !important;
}
.modal .modal-lg {
  max-width: 595px;
}
@media (max-width: 767.98px) {
  .modal .modal-dialog,
  .modal .modal-lg {
    max-width: 315px;
    margin: 0 auto;
  }
}
.modal .modal-dialog-custom.modal-dialog {
  max-width: 500px;
}
.modal .modal-dialog-custom.modal-dialog .modal-header,
.modal .modal-dialog-custom.modal-dialog .modal-body {
  padding: 16px 24px;
}
.modal .modal-dialog-custom.modal-dialog .modal-header {
  padding-top: 20px;
}
.modal .modal-dialog-custom.modal-dialog .modal-header button.close {
  padding-right: 24px;
}
.modal .modal-dialog-custom.modal-dialog .modal-body {
  padding-top: 0;
}
.modal .modal-dialog-custom.modal-dialog .modal-body .title {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.modal .modal-dialog-custom.modal-dialog .modal-body .subtitle {
  color: #333;
  font-size: 14px;
  padding-bottom: 6px;
}
.modal .modal-dialog-custom.modal-dialog .modal-body .subtitle-warn {
  color: #ff0000;
  font-size: 14px;
}
.modal .modal-dialog-custom.modal-dialog .modal-footer {
  padding: 0 24px;
  padding-bottom: 30px;
}
.modal .modal-dialog-custom.modal-lg {
  max-width: 595px;
}
@media (max-width: 767.98px) {
  .modal .modal-dialog-custom.modal-dialog {
    max-width: 315px;
    margin: 0 auto;
  }
}

.daterangepicker .drp-buttons .btn-primary {
  color: #ffffff;
  background-color: #007bff;
  border-color: #007bff;
  box-shadow: none;
}
.daterangepicker .drp-buttons .btn-default {
  background-color: #f8f9fa;
  border-color: #ddd;
  color: #444;
}
.daterangepicker .drp-buttons:hover .btn:hover {
  opacity: 0.9;
}

.popover.pad-warn-popover {
  background-color: #666;
  border-color: #666;
  font-size: 12px;
  max-width: 200px;
}
.popover.pad-warn-popover .arrow::before,
.popover.pad-warn-popover .arrow::after {
  border-bottom-color: #666;
  border-top-color: #666;
}
.popover.pad-warn-popover .popover-body {
  color: #fff;
}
.popover.pad-warn-popover .popover-body .blue-link {
  color: #1890ff !important;
  font-size: 12px;
}

.hidden {
  display: none;
}

.tooltip {
  pointer-events: none;
}

.tooltip-inner {
  white-space: pre-wrap;
}

.turbolinks-progress-bar {
  height: 4px;
  background-color: red;
}

.btn:focus,
input:focus {
  outline: none;
  box-shadow: none;
}

.btn.btn-hover-red:hover {
  background: #d71017 !important;
}

.btn.disabled,
.btn:disabled {
  opacity: 0.5;
}

.blue-link {
  color: #1890ff !important;
  font-size: 14px;
}
.blue-link.disabled {
  color: #cccccc !important;
  cursor: not-allowed;
}
.blue-link.disabled:hover {
  text-decoration: none;
  background-color: #fff !important;
}
.blue-link.disband {
  color: #cccccc !important;
  cursor: not-allowed;
}
.blue-link.disband:hover {
  text-decoration: none;
  background-color: #fff !important;
}
.blue-link.more-actions.disband {
  cursor: pointer;
}

.green-link {
  color: #14c57f;
  font-size: 12px;
}
.green-link:hover {
  color: #39b079;
}

.dark-link {
  color: #333;
  border: none;
  font-size: 14px;
}
.dark-link:hover {
  color: #333;
  box-shadow: none;
}

.protocol-link {
  font-size: 12px;
}
.protocol-link a.blue-link {
  font-size: 12px;
}

.text-ellipsis, .paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .collapse-title .question-type, .paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap__question-content, .paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-type-text, .paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap__question-content, .paas-pads-show-page .mobile-choose-written-pad-questions__header .search-wrap .el-select .el-input__inner, .paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-type, .paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap__question-content, .paas-pads-show-page .mobile-choose-pad-questions__header .el-select .el-input__inner {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.text-ellipsis-wrap {
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.text-ellipsis-wrap2 {
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tooltip.max-width-unset .tooltip-inner {
  max-width: unset;
}

.fire-line-certificate-inner {
  max-width: calc(246px + 0.8rem);
}
.fire-line-certificate-inner .fire-line-certificate {
  width: 200px;
  height: 150px;
}

.showmebug-loading {
  max-width: 43px;
  max-height: 43px;
  -webkit-animation: spinner-border 1.6s linear infinite;
  animation: spinner-border 1.6s linear infinite;
}

/* BASICS */
.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
  direction: ltr;
}

/* PADDING */
.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}

.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */
.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}

.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker {
  color: black;
}

.CodeMirror-guttermarker-subtle {
  color: #999;
}

/* CURSOR */
.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}

/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}

.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}

.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}

.cm-fat-cursor .CodeMirror-line::selection,
.cm-fat-cursor .CodeMirror-line > span::selection,
.cm-fat-cursor .CodeMirror-line > span > span::selection {
  background: transparent;
}

.cm-fat-cursor .CodeMirror-line::-moz-selection,
.cm-fat-cursor .CodeMirror-line > span::-moz-selection,
.cm-fat-cursor .CodeMirror-line > span > span::-moz-selection {
  background: transparent;
}

.cm-fat-cursor {
  caret-color: transparent;
}

@-moz-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@keyframes blink {
  50% {
    background-color: transparent;
  }
}
/* Can style cursor different in overwrite (non-insert) mode */
.cm-tab {
  display: inline-block;
  text-decoration: inherit;
}

.CodeMirror-rulers {
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  bottom: 0;
  overflow: hidden;
}

.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0;
  bottom: 0;
  position: absolute;
}

/* DEFAULT THEME */
.cm-s-default .cm-header {
  color: blue;
}

.cm-s-default .cm-quote {
  color: #090;
}

.cm-negative {
  color: #d44;
}

.cm-positive {
  color: #292;
}

.cm-header, .cm-strong {
  font-weight: bold;
}

.cm-em {
  font-style: italic;
}

.cm-link {
  text-decoration: underline;
}

.cm-strikethrough {
  text-decoration: line-through;
}

.cm-s-default .cm-keyword {
  color: #708;
}

.cm-s-default .cm-atom {
  color: #219;
}

.cm-s-default .cm-number {
  color: #164;
}

.cm-s-default .cm-def {
  color: #00f;
}

.cm-s-default .cm-variable-2 {
  color: #05a;
}

.cm-s-default .cm-variable-3, .cm-s-default .cm-type {
  color: #085;
}

.cm-s-default .cm-comment {
  color: #a50;
}

.cm-s-default .cm-string {
  color: #a11;
}

.cm-s-default .cm-string-2 {
  color: #f50;
}

.cm-s-default .cm-meta {
  color: #555;
}

.cm-s-default .cm-qualifier {
  color: #555;
}

.cm-s-default .cm-builtin {
  color: #30a;
}

.cm-s-default .cm-bracket {
  color: #997;
}

.cm-s-default .cm-tag {
  color: #170;
}

.cm-s-default .cm-attribute {
  color: #00c;
}

.cm-s-default .cm-hr {
  color: #999;
}

.cm-s-default .cm-link {
  color: #00c;
}

.cm-s-default .cm-error {
  color: #f00;
}

.cm-invalidchar {
  color: #f00;
}

.CodeMirror-composing {
  border-bottom: 2px solid;
}

/* Default styles for common addons */
div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0b0;
}

div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #a22;
}

.CodeMirror-matchingtag {
  background: rgba(255, 150, 0, 0.3);
}

.CodeMirror-activeline-background {
  background: #e8f2ff;
}

/* STOP */
/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */
.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}

.CodeMirror-scroll {
  overflow: scroll !important; /* Things will break if this is overridden */
  /* 50px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -50px;
  margin-right: -50px;
  padding-bottom: 50px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
  z-index: 0;
}

.CodeMirror-sizer {
  position: relative;
  border-right: 50px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
  outline: none;
}

.CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}

.CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}

.CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0;
}

.CodeMirror-gutter-filler {
  left: 0;
  bottom: 0;
}

.CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100%;
  z-index: 3;
}

.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -50px;
}

.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}

.CodeMirror-gutter-background {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
}

.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}

.CodeMirror-gutter-wrapper ::selection {
  background-color: transparent;
}

.CodeMirror-gutter-wrapper ::-moz-selection {
  background-color: transparent;
}

.CodeMirror-lines {
  cursor: text;
  min-height: 1px; /* prevents collapsing before first draw */
}

.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}

.CodeMirror-wrap pre.CodeMirror-line,
.CodeMirror-wrap pre.CodeMirror-line-like {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: 0.1px; /* Force widget margins to stay inside of the container */
}

.CodeMirror-rtl pre {
  direction: rtl;
}

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}

.CodeMirror-measure pre {
  position: static;
}

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}

div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected {
  background: #d9d9d9;
}

.CodeMirror-focused .CodeMirror-selected {
  background: #d7d4f0;
}

.CodeMirror-crosshair {
  cursor: crosshair;
}

.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection {
  background: #d7d4f0;
}

.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection {
  background: #d7d4f0;
}

.cm-searching {
  background-color: #ffa;
  background-color: rgba(255, 255, 0, 0.4);
}

/* Used to force a border model for a node */
.cm-force-border {
  padding-right: 0.1px;
}

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}
/* See issue #2901 */
.cm-tab-wrap-hack:after {
  content: "";
}

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext {
  background: none;
}

.CodeMirror-hints {
  position: absolute;
  z-index: 10;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 2px;
  -webkit-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  border: 1px solid silver;
  background: white;
  font-size: 90%;
  font-family: monospace;
  max-height: 20em;
  overflow-y: auto;
  box-sizing: border-box;
}

.CodeMirror-hint {
  margin: 0;
  padding: 0 4px;
  border-radius: 2px;
  white-space: pre;
  color: black;
  cursor: pointer;
}

li.CodeMirror-hint-active {
  background: #08f;
  color: white;
}

.CodeMirror {
  font-family: Monaco, Menlo, Consolas, "Space Mono", "Courier New", monospace;
  cursor: text;
}
.CodeMirror.CodeMirror-wrap.readyOnly {
  cursor: not-allowed;
}
.CodeMirror.CodeMirror-wrap.readyOnly .CodeMirror-lines {
  cursor: not-allowed;
}
.CodeMirror span.cm-diagnostic {
  position: relative;
}
.CodeMirror span.cm-diagnostic::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0px;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, transparent, transparent 45%, #ff0000, transparent 55%, transparent 100%), linear-gradient(45deg, transparent, transparent 45%, #ff0000, transparent 55%, transparent 100%);
  background-size: 0.5em 0.5em;
  background-repeat: repeat-x, repeat-x;
}
.CodeMirror.cm-s-monokai span.cm-diagnostic::after {
  background: linear-gradient(135deg, transparent, transparent 45%, #00ffff, transparent 55%, transparent 100%), linear-gradient(45deg, transparent, transparent 45%, #00ffff, transparent 55%, transparent 100%);
}

.CodeMirror-hints {
  background: #fafafa;
}
.CodeMirror-hints::-webkit-scrollbar {
  width: 8px;
  cursor: pointer;
}
.CodeMirror-hints::-webkit-scrollbar-thumb:vertical {
  background-color: #c7c7c7;
  border-radius: 100px;
}
.CodeMirror-hints::-webkit-scrollbar-thumb:vertical:active {
  background-color: #c7c7c7;
  border-radius: 100px;
}
.CodeMirror-hints::-webkit-scrollbar-corner {
  background-color: #c7c7c7;
}
.CodeMirror-hints .CodeMirror-hint {
  min-width: 150px;
  max-width: 500px;
  color: #000000;
  background: #ffffff;
}
.CodeMirror-hints .CodeMirror-hint.CodeMirror-hint-active {
  color: white;
  background: #08f;
}
.CodeMirror-hints .CodeMirror-hint.codemirror-lsp-hint {
  padding: 2px 10px !important;
  min-width: 300px;
  display: flex;
}
.CodeMirror-hints .CodeMirror-hint.codemirror-lsp-hint .left {
  min-width: 40%;
}
.CodeMirror-hints .CodeMirror-hint.codemirror-lsp-hint .right {
  flex: 1;
  opacity: 0.8;
  max-width: 60%;
  text-align: right;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.CodeMirror-hints .CodeMirror-hint.codemirror-lsp-hint .kind {
  width: 20px;
  padding-right: 5px;
}
.CodeMirror-hints .CodeMirror-hint.codemirror-lsp-hint .label {
  padding-right: 5px;
}
.CodeMirror-hints .CodeMirror-hint.codemirror-lsp-hint .args {
  opacity: 0.5;
  padding-right: 10px;
}
.CodeMirror-hints.monokai {
  background: #1e1e1e;
}
.CodeMirror-hints.monokai::-webkit-scrollbar {
  width: 8px;
  cursor: pointer;
}
.CodeMirror-hints.monokai::-webkit-scrollbar-thumb:vertical {
  background-color: #222;
  border-radius: 100px;
}
.CodeMirror-hints.monokai::-webkit-scrollbar-thumb:vertical:active {
  background-color: #222;
  border-radius: 100px;
}
.CodeMirror-hints.monokai::-webkit-scrollbar-corner {
  background-color: #222;
}
.CodeMirror-hints.monokai .CodeMirror-hint {
  color: #fff;
  background: #0e0e0e;
}
.CodeMirror-hints.monokai .CodeMirror-hint.CodeMirror-hint-active {
  color: white;
  background: #08f;
}

.CodeMirror-lsp-tooltip {
  position: absolute;
  font-size: 12px;
  font-family: Monaco, Menlo, Consolas, Space Mono, Courier New, monospace;
  padding: 2px;
  z-index: 99;
  background: #fafafa;
  border: 1px solid black;
  box-sizing: border-box;
}
.CodeMirror-lsp-tooltip.monokai {
  color: #eeeeee;
  background: #1e1e1e;
  border-color: #999999;
}
.CodeMirror-lsp-tooltip.monokai .lsp-tooltip-panel::-webkit-scrollbar {
  width: 8px;
  cursor: pointer;
}
.CodeMirror-lsp-tooltip.monokai .lsp-tooltip-panel::-webkit-scrollbar-thumb:vertical {
  background-color: #222;
  border-radius: 100px;
}
.CodeMirror-lsp-tooltip.monokai .lsp-tooltip-panel::-webkit-scrollbar-thumb:vertical:active {
  background-color: #222;
  border-radius: 100px;
}
.CodeMirror-lsp-tooltip.monokai .lsp-tooltip-panel::-webkit-scrollbar-corner {
  background-color: #222;
}
.CodeMirror-lsp-tooltip.monokai .lsp-tooltip-item span {
  color: #ffffff;
}
.CodeMirror-lsp-tooltip .lsp-tooltip-panel {
  padding: 3px 5px;
  max-height: 150px;
  max-width: 300px;
  overflow-y: auto;
}
.CodeMirror-lsp-tooltip .lsp-tooltip-panel::-webkit-scrollbar {
  width: 8px;
  cursor: pointer;
}
.CodeMirror-lsp-tooltip .lsp-tooltip-panel::-webkit-scrollbar-thumb:vertical {
  background-color: #c7c7c7;
  border-radius: 100px;
}
.CodeMirror-lsp-tooltip .lsp-tooltip-panel::-webkit-scrollbar-thumb:vertical:active {
  background-color: #c7c7c7;
  border-radius: 100px;
}
.CodeMirror-lsp-tooltip .lsp-tooltip-panel::-webkit-scrollbar-corner {
  background-color: #c7c7c7;
}
.CodeMirror-lsp-tooltip .lsp-tooltip-item span {
  color: #000000;
  font-weight: bold;
}

/**
 *	@package    vscode-dark theme
 *	@version    1.0.0
 *	@author		  Inter-Net PRO
 *	@link       https://inter-net.pro
 *	@github     https://github.com/Inter-Net-Pro/Theme-VSCode-Dark
*/
.cm-s-vscode-dark span.cm-meta {
  color: #569cd6;
}
.cm-s-vscode-dark span.cm-number {
  color: #b5cea8;
}
.cm-s-vscode-dark span.cm-keyword {
  line-height: 1em;
  font-weight: bold;
  color: #569cd6;
}
.cm-s-vscode-dark span.cm-def {
  color: #fff;
}
.cm-s-vscode-dark span.cm-variable {
  color: #fff;
}
.cm-s-vscode-dark span.cm-variable-2 {
  color: #9cdcfe;
}
.cm-s-vscode-dark span.cm-variable-3,
.cm-s-vscode-dark span.cm-type {
  color: #569cd6;
}
.cm-s-vscode-dark span.cm-property {
  color: #fff;
}
.cm-s-vscode-dark span.cm-operator {
  color: #d4d4d4;
}
.cm-s-vscode-dark span.cm-string {
  color: #ce9178;
}
.cm-s-vscode-dark span.cm-string-2 {
  color: #6a8759;
}
.cm-s-vscode-dark span.cm-comment {
  color: #6a9955;
}
.cm-s-vscode-dark span.cm-link {
  color: #287bde;
}
.cm-s-vscode-dark span.cm-atom {
  color: #569cd6;
}
.cm-s-vscode-dark span.cm-error {
  color: #bc3f3c;
}
.cm-s-vscode-dark span.cm-tag {
  color: #569cd6;
}
.cm-s-vscode-dark span.cm-attribute {
  color: #9cdcfe;
}
.cm-s-vscode-dark span.cm-qualifier {
  color: #d7ba7d;
}
.cm-s-vscode-dark span.cm-bracket {
  color: #808080;
}
.cm-s-vscode-dark.CodeMirror {
  background: #1e1e1e;
  color: #e9e9e9;
}
.cm-s-vscode-dark .CodeMirror-cursor {
  border-left: 1px solid #bebebe;
}
.cm-s-vscode-dark .CodeMirror-activeline-background {
  background: #3a3a3a;
}
.cm-s-vscode-dark div.CodeMirror-selected {
  background: #1e496c;
}
.cm-s-vscode-dark .CodeMirror-gutters {
  background: #252526;
  border-right: 1px solid grey;
  color: #606366;
}
.cm-s-vscode-dark span.cm-builtin {
  color: #a9b7c6;
}
.cm-s-vscode-dark .CodeMirror-matchingbracket {
  background-color: #3b514d;
  color: yellow !important;
}
.cm-s-vscode-dark .CodeMirror-hints.vscode-dark {
  color: #9c9e9e;
  background-color: #3b3e3f !important;
}
.cm-s-vscode-dark .CodeMirror-hints.vscode-dark .CodeMirror-hint-active {
  background-color: #494d4e !important;
  color: #9c9e9e !important;
}
.cm-s-vscode-dark pre.CodeMirror-line {
  font-weight: 600;
}

@font-face {
  font-family: "Akrobat";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/Akrobat-Bold-3e7d9195f3cceba35cd6556ef066f8f6d914085c3399e2afc45de4fc531dae2e.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/Akrobat-Bold-b8738ad8a0898134bae7f7eec80f4726deeed092b1129b1d45e1147738c498af.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/Akrobat-Bold-4ef99b501844d789a9bfd1827088aebff377bdb9c97db4d5c1209f7feed2b746.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Akrobat";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/Akrobat-Regular-7584e591fa25f3d4fab25c6c735b6298738777758bac0b7b176993e2d4f0ecfe.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/Akrobat-Regular-6d4ee6078db5a3c1bbe952216321382f04545178d109282799aba35662d367f9.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/Akrobat-Regular-e44f52edf2c39404abda2cceab608a76e85dd37ed3709a228be02fdb833e4929.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Akrobat";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/Akrobat-ExtraBold-526bfcc890d47cf2919c22f1048c05f0c16bac54b59c7ccd424a9bf5a2669df7.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/Akrobat-ExtraBold-e15bf2c2fea94a68c909ddf94fa946e9c4ba706c03fb54178d51a10964b1864a.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/Akrobat-ExtraBold-efaf7741ab66b093b65bf38b2c0e2c2a6222f4e41b7283bf04abb9125736d1a7.ttf) format("truetype");
  font-weight: bolder;
  font-style: normal;
}
@font-face {
  font-family: "Akrobat-Black";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/Akrobat-Black-8ee2232ff620f639076da0acf4833be0d3045e7e04d896797729d7b932d5217b.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/Akrobat-Black-9714b8f7b1f3aa2458c7b73b2acf1dd6d7b166ffc48958d99ac46df990c63cb7.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/Akrobat-Black-803ce320472ee91be6a2d686abc51c38af611ee9d15a14bea7e5cc5147301831.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
}
/* stylelint-disable font-family-no-missing-generic-family-keyword */
@font-face {
  font-family: "KaTeX_AMS";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_AMS-Regular-df8c53009001ab00f73fe27cf82601beaf555e70bb30b72c141206131af70925.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_AMS-Regular-9171583271584351a39a4c301f28c9d26090e70ac701454434cf1f36f8e17f5a.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_AMS-Regular-84db7791942d563de5a3b7af4bd7c2c2f305c5248936c22ae6650b29c4edae8e.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "KaTeX_Caligraphic";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Caligraphic-Bold-9e479b9959ea8435ee73a06c2877982bd06d1b36ce072d0f95d9497eba83ba7b.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Caligraphic-Bold-32e651d18a70d0648da4f8c456ff5fd058592057f54f817dc22911108c4f58fd.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Caligraphic-Bold-2d4ed7be8dbfcf9f94ec850805223cc8d999935b3078421002b880c6d6d9adf4.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "KaTeX_Caligraphic";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Caligraphic-Regular-e11c44c32838d12fcae123063c2ec8ac8386b9cf10d760f1e332aa6f110e149e.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Caligraphic-Regular-6d6c124a5d2044bd2f8a0dacb64bf9a099dc54da56801674ea8302a1b7fe7f37.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Caligraphic-Regular-fa4cee69fcabe16ad1d1986eb31cf36d7cc58dac4bb3414f25f0cd122d695337.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "KaTeX_Fraktur";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Fraktur-Bold-27b17622c71a536eb9b2aaa148f9bcaee1954bef48b50d7380f7b8ce0922c1f3.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Fraktur-Bold-17df2f424360f62dacac4dede5acc5c206c627982cc8b486ef39a0482c887ce2.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Fraktur-Bold-500789ee69925e053aa0df19691cc7b30f636cc6d1c6804c2b0e076ef3124276.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "KaTeX_Fraktur";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Fraktur-Regular-432cbadfdedadaff2e9efdffa417d5197fe1ea113fcb8522fd692fde45c7a5f9.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Fraktur-Regular-90badd06c35e3e6c2d54c182e87c2d95be43fd182e62e229ff7a8c92230e4ada.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Fraktur-Regular-5383fa041043481cd19c2e95c1b26a47b40be130d4ac1199f5f382fed829787f.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "KaTeX_Main";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Main-Bold-ef2daba3e88bedf914d0d7ec42e9d2fd98f1b238bc588e7941e25ff1c737b905.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Main-Bold-1718ed4209556a3fd003d375f5644dc3b3c3a6cc1763a8c7393b4db9273fdcdf.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Main-Bold-817eb5b1bd7e59157549759934f32310d2d2b14d9652af9dbc2c11de6062341c.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "KaTeX_Main";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Main-BoldItalic-6d35fd5909430b79f2fa67095058ae7b05254f1cdb0be91da9a50f022330655f.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Main-BoldItalic-4883ad9048c182cd788b0df0492d2db8109fbef7b1dadd23644e89663c334489.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Main-BoldItalic-a0c1b555982973e8af39caedf37ff9e0b405ef9e5285acf36dd168b4cf6b5e3f.ttf) format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "KaTeX_Main";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Main-Italic-4398cb76c0e634a69d682def051cdb730f6616ee4140c3a7539919a012b35bff.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Main-Italic-d6edc2c3cf9dd8b806432e4e0415d0ca13cfc8b6c0fcb91874aa4670043e5b48.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Main-Italic-8ba389f3a274c8302dd2cb3242524d05ad387f27a51cd7c730fb2647f2b5a94c.ttf) format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "KaTeX_Main";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Main-Regular-9849adebf5b76debdd956669bce9cc2d30642693ae8adcfb541452ec3332f770.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Main-Regular-6e68a10effe95b626911b60d38fdb5427680c7e73ab08655205bd2a70bd745e3.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Main-Regular-f72d3339b39f305306948d0ff865ddccb03b2e4bf683d6431e918d2fb9d59fc1.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "KaTeX_Math";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Math-BoldItalic-7d916061d9388510fa90a9d09d886ccbcff36b39d626b0eabcd15dec3f4d7b1c.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Math-BoldItalic-298cc7b312ee410db2a662a860e4e06d184f161be29f6e9ccfd5d468e6fff361.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Math-BoldItalic-6054f0719d94d86930c72426f71ff7077f00d1562ef555fb35297484df6dc0d7.ttf) format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "KaTeX_Math";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Math-Italic-7a4a582d8560b084402e339e88b465db88e30c2c13b9e2424f091b40c4dcd825.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Math-Italic-a70d819a39346552f06ec5c229ad0bf7ea51e41f83e29dabc2d4378329c151c8.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Math-Italic-1db9012edb7b8f73f8557a610aae5a34f16bd4f9964861887730f99c1c011f3a.ttf) format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "KaTeX_SansSerif";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_SansSerif-Bold-ae70c62cfec4727d57b33f312d0dad4021f48a789a59f461adc5ba793de6dc41.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_SansSerif-Bold-cfebf2da3913540de9d41295501ac508fd1423155629c5570e50f55ba260656c.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_SansSerif-Bold-b7a19a1ddfa471fc59801a43e42addc3e36e8a235f99a3fe32bff25bb229cddb.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "KaTeX_SansSerif";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_SansSerif-Italic-a255a2613f995d62037dd80dd321fc465a7cd91d920a152a387bdd52b7b94dba.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_SansSerif-Italic-c265ac33331c4b2d8815080376a1f5915f73fcb20d0578933e222e3294270110.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_SansSerif-Italic-393a62f2a756e44792384f249a5ce13123cda71b14225c47e5637f4c89bf709c.ttf) format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "KaTeX_SansSerif";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_SansSerif-Regular-ed41375da6dec1839b2e3e9431f93623d9da7a59e135f85c1f5d3643a862c02f.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_SansSerif-Regular-70f7733021f891f7e7682ed09f9681f9fe2afc23d8c4bf773e17ad628a2bb138.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_SansSerif-Regular-995e37bd7e2d165fa61c95e88d488bf024d176d58445428f409443ad8e7f9449.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "KaTeX_Script";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Script-Regular-afaabf41a7d6bc69bfae61d438d7787a2cf66ddb8e2670d359e15851420fbc5a.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Script-Regular-163c1821fb186b616091898283b527b915d3dd730a1d1044aea932c439fc98e2.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Script-Regular-f188c073bd6e0a5d4217a19daf9be11ca5207708bc12ecebb3786c202b9752c3.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "KaTeX_Size1";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Size1-Regular-be59f657074f180a9e0db1712b92cd02e3172b2ede8c20dde72eb66e9c46d433.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Size1-Regular-463edf4ffd4501d04fbde471d5353b963ac5a0d12ec1d1d772088a0d0384b21d.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Size1-Regular-b520c17c27b680a292241f7fe413fb3c1e0445d87170ac3437504d9bf0e8ceb7.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "KaTeX_Size2";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Size2-Regular-3f86973e9cf92516abfeb1ad68be527e2aaec98d3b45fe53b64830a51a00d742.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Size2-Regular-89d784edd4ad69a1c8de4535d20cf1c6fdbb3faeffe98441a1945c033e1f6153.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Size2-Regular-0fdcd4ded40a6058e8d94f702c356834301608e23bd0c0fb05f4135f3f001b2d.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "KaTeX_Size3";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Size3-Regular-260a82134e38d07d84dac0f66316efb8f0d8c927126993d51c5bd0889d3e098a.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Size3-Regular-9bf6fbc4b35d60b12d16773aa2312e96657314e72a4cc9792b36c81768b9dae7.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Size3-Regular-4cd758710f615a96e522eaef789a69c7e9a57d65959138c4fadbe20d5fcb70bc.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "KaTeX_Size4";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Size4-Regular-24d4e1a3524f45b6599c611e7de20bae94de2d0b14ca0da3987c6dc24c32cf66.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Size4-Regular-39f33a37b0f1b9c170cd1de8e92e0e6e815560699a0195eb13b7db461ac26bf9.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Size4-Regular-f3ab8de5e449811798dcfd66141c37795bdb9813d794babbabfb66ce87f992da.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "KaTeX_Typewriter";
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Typewriter-Regular-3e0285cfd40b28ec298f2553064d6af26318af711ace80f3f97fdc091c8e6828.woff2) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Typewriter-Regular-392c8baf69e53820350aba9ff422e7d4171965c43b6fb600e04609965b1150be.woff) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/KaTeX_Typewriter-Regular-131347841d0fddd9a110abdc8c59b1beb3f949d093f9d9acb0022ee9757e997a.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
.katex {
  font: normal 1.21em KaTeX_Main, Times New Roman, serif;
  line-height: 1.2;
  text-indent: 0;
  text-rendering: auto;
  border-color: currentColor;
}

.katex * {
  -ms-high-contrast-adjust: none !important;
}

.katex .katex-version::after {
  content: "0.12.0";
}

.katex .katex-mathml {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.katex .katex-html {
  /* \newline is an empty block at top level, between .base elements */
}

.katex .katex-html > .newline {
  display: block;
}

.katex .base {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  width: min-content;
}

.katex .strut {
  display: inline-block;
}

.katex .textbf {
  font-weight: bold;
}

.katex .textit {
  font-style: italic;
}

.katex .textrm {
  font-family: KaTeX_Main;
}

.katex .textsf {
  font-family: KaTeX_SansSerif;
}

.katex .texttt {
  font-family: KaTeX_Typewriter;
}

.katex .mathnormal {
  font-family: KaTeX_Math;
  font-style: italic;
}

.katex .mathit {
  font-family: KaTeX_Main;
  font-style: italic;
}

.katex .mathrm {
  font-style: normal;
}

.katex .mathbf {
  font-family: KaTeX_Main;
  font-weight: bold;
}

.katex .boldsymbol {
  font-family: KaTeX_Math;
  font-weight: bold;
  font-style: italic;
}

.katex .amsrm {
  font-family: KaTeX_AMS;
}

.katex .mathbb,
.katex .textbb {
  font-family: KaTeX_AMS;
}

.katex .mathcal {
  font-family: KaTeX_Caligraphic;
}

.katex .mathfrak,
.katex .textfrak {
  font-family: KaTeX_Fraktur;
}

.katex .mathtt {
  font-family: KaTeX_Typewriter;
}

.katex .mathscr,
.katex .textscr {
  font-family: KaTeX_Script;
}

.katex .mathsf,
.katex .textsf {
  font-family: KaTeX_SansSerif;
}

.katex .mathboldsf,
.katex .textboldsf {
  font-family: KaTeX_SansSerif;
  font-weight: bold;
}

.katex .mathitsf,
.katex .textitsf {
  font-family: KaTeX_SansSerif;
  font-style: italic;
}

.katex .mainrm {
  font-family: KaTeX_Main;
  font-style: normal;
}

.katex .vlist-t {
  display: inline-table;
  table-layout: fixed;
  border-collapse: collapse;
}

.katex .vlist-r {
  display: table-row;
}

.katex .vlist {
  display: table-cell;
  vertical-align: bottom;
  position: relative;
}

.katex .vlist > span {
  display: block;
  height: 0;
  position: relative;
}

.katex .vlist > span > span {
  display: inline-block;
}

.katex .vlist > span > .pstrut {
  overflow: hidden;
  width: 0;
}

.katex .vlist-t2 {
  margin-right: -2px;
}

.katex .vlist-s {
  display: table-cell;
  vertical-align: bottom;
  font-size: 1px;
  width: 2px;
  min-width: 2px;
}

.katex .vbox {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: baseline;
}

.katex .hbox {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}

.katex .thinbox {
  display: inline-flex;
  flex-direction: row;
  width: 0;
  max-width: 0;
}

.katex .msupsub {
  text-align: left;
}

.katex .mfrac > span > span {
  text-align: center;
}

.katex .mfrac .frac-line {
  display: inline-block;
  width: 100%;
  border-bottom-style: solid;
}

.katex .mfrac .frac-line,
.katex .overline .overline-line,
.katex .underline .underline-line,
.katex .hline,
.katex .hdashline,
.katex .rule {
  min-height: 1px;
}

.katex .mspace {
  display: inline-block;
}

.katex .llap,
.katex .rlap,
.katex .clap {
  width: 0;
  position: relative;
}

.katex .llap > .inner,
.katex .rlap > .inner,
.katex .clap > .inner {
  position: absolute;
}

.katex .llap > .fix,
.katex .rlap > .fix,
.katex .clap > .fix {
  display: inline-block;
}

.katex .llap > .inner {
  right: 0;
}

.katex .rlap > .inner,
.katex .clap > .inner {
  left: 0;
}

.katex .clap > .inner > span {
  margin-left: -50%;
  margin-right: 50%;
}

.katex .rule {
  display: inline-block;
  border: solid 0;
  position: relative;
}

.katex .overline .overline-line,
.katex .underline .underline-line,
.katex .hline {
  display: inline-block;
  width: 100%;
  border-bottom-style: solid;
}

.katex .hdashline {
  display: inline-block;
  width: 100%;
  border-bottom-style: dashed;
}

.katex .sqrt > .root {
  margin-left: 0.27777778em;
  margin-right: -0.55555556em;
}

.katex .sizing.reset-size1.size1,
.katex .fontsize-ensurer.reset-size1.size1 {
  font-size: 1em;
}

.katex .sizing.reset-size1.size2,
.katex .fontsize-ensurer.reset-size1.size2 {
  font-size: 1.2em;
}

.katex .sizing.reset-size1.size3,
.katex .fontsize-ensurer.reset-size1.size3 {
  font-size: 1.4em;
}

.katex .sizing.reset-size1.size4,
.katex .fontsize-ensurer.reset-size1.size4 {
  font-size: 1.6em;
}

.katex .sizing.reset-size1.size5,
.katex .fontsize-ensurer.reset-size1.size5 {
  font-size: 1.8em;
}

.katex .sizing.reset-size1.size6,
.katex .fontsize-ensurer.reset-size1.size6 {
  font-size: 2em;
}

.katex .sizing.reset-size1.size7,
.katex .fontsize-ensurer.reset-size1.size7 {
  font-size: 2.4em;
}

.katex .sizing.reset-size1.size8,
.katex .fontsize-ensurer.reset-size1.size8 {
  font-size: 2.88em;
}

.katex .sizing.reset-size1.size9,
.katex .fontsize-ensurer.reset-size1.size9 {
  font-size: 3.456em;
}

.katex .sizing.reset-size1.size10,
.katex .fontsize-ensurer.reset-size1.size10 {
  font-size: 4.148em;
}

.katex .sizing.reset-size1.size11,
.katex .fontsize-ensurer.reset-size1.size11 {
  font-size: 4.976em;
}

.katex .sizing.reset-size2.size1,
.katex .fontsize-ensurer.reset-size2.size1 {
  font-size: 0.83333333em;
}

.katex .sizing.reset-size2.size2,
.katex .fontsize-ensurer.reset-size2.size2 {
  font-size: 1em;
}

.katex .sizing.reset-size2.size3,
.katex .fontsize-ensurer.reset-size2.size3 {
  font-size: 1.16666667em;
}

.katex .sizing.reset-size2.size4,
.katex .fontsize-ensurer.reset-size2.size4 {
  font-size: 1.33333333em;
}

.katex .sizing.reset-size2.size5,
.katex .fontsize-ensurer.reset-size2.size5 {
  font-size: 1.5em;
}

.katex .sizing.reset-size2.size6,
.katex .fontsize-ensurer.reset-size2.size6 {
  font-size: 1.66666667em;
}

.katex .sizing.reset-size2.size7,
.katex .fontsize-ensurer.reset-size2.size7 {
  font-size: 2em;
}

.katex .sizing.reset-size2.size8,
.katex .fontsize-ensurer.reset-size2.size8 {
  font-size: 2.4em;
}

.katex .sizing.reset-size2.size9,
.katex .fontsize-ensurer.reset-size2.size9 {
  font-size: 2.88em;
}

.katex .sizing.reset-size2.size10,
.katex .fontsize-ensurer.reset-size2.size10 {
  font-size: 3.45666667em;
}

.katex .sizing.reset-size2.size11,
.katex .fontsize-ensurer.reset-size2.size11 {
  font-size: 4.14666667em;
}

.katex .sizing.reset-size3.size1,
.katex .fontsize-ensurer.reset-size3.size1 {
  font-size: 0.71428571em;
}

.katex .sizing.reset-size3.size2,
.katex .fontsize-ensurer.reset-size3.size2 {
  font-size: 0.85714286em;
}

.katex .sizing.reset-size3.size3,
.katex .fontsize-ensurer.reset-size3.size3 {
  font-size: 1em;
}

.katex .sizing.reset-size3.size4,
.katex .fontsize-ensurer.reset-size3.size4 {
  font-size: 1.14285714em;
}

.katex .sizing.reset-size3.size5,
.katex .fontsize-ensurer.reset-size3.size5 {
  font-size: 1.28571429em;
}

.katex .sizing.reset-size3.size6,
.katex .fontsize-ensurer.reset-size3.size6 {
  font-size: 1.42857143em;
}

.katex .sizing.reset-size3.size7,
.katex .fontsize-ensurer.reset-size3.size7 {
  font-size: 1.71428571em;
}

.katex .sizing.reset-size3.size8,
.katex .fontsize-ensurer.reset-size3.size8 {
  font-size: 2.05714286em;
}

.katex .sizing.reset-size3.size9,
.katex .fontsize-ensurer.reset-size3.size9 {
  font-size: 2.46857143em;
}

.katex .sizing.reset-size3.size10,
.katex .fontsize-ensurer.reset-size3.size10 {
  font-size: 2.96285714em;
}

.katex .sizing.reset-size3.size11,
.katex .fontsize-ensurer.reset-size3.size11 {
  font-size: 3.55428571em;
}

.katex .sizing.reset-size4.size1,
.katex .fontsize-ensurer.reset-size4.size1 {
  font-size: 0.625em;
}

.katex .sizing.reset-size4.size2,
.katex .fontsize-ensurer.reset-size4.size2 {
  font-size: 0.75em;
}

.katex .sizing.reset-size4.size3,
.katex .fontsize-ensurer.reset-size4.size3 {
  font-size: 0.875em;
}

.katex .sizing.reset-size4.size4,
.katex .fontsize-ensurer.reset-size4.size4 {
  font-size: 1em;
}

.katex .sizing.reset-size4.size5,
.katex .fontsize-ensurer.reset-size4.size5 {
  font-size: 1.125em;
}

.katex .sizing.reset-size4.size6,
.katex .fontsize-ensurer.reset-size4.size6 {
  font-size: 1.25em;
}

.katex .sizing.reset-size4.size7,
.katex .fontsize-ensurer.reset-size4.size7 {
  font-size: 1.5em;
}

.katex .sizing.reset-size4.size8,
.katex .fontsize-ensurer.reset-size4.size8 {
  font-size: 1.8em;
}

.katex .sizing.reset-size4.size9,
.katex .fontsize-ensurer.reset-size4.size9 {
  font-size: 2.16em;
}

.katex .sizing.reset-size4.size10,
.katex .fontsize-ensurer.reset-size4.size10 {
  font-size: 2.5925em;
}

.katex .sizing.reset-size4.size11,
.katex .fontsize-ensurer.reset-size4.size11 {
  font-size: 3.11em;
}

.katex .sizing.reset-size5.size1,
.katex .fontsize-ensurer.reset-size5.size1 {
  font-size: 0.55555556em;
}

.katex .sizing.reset-size5.size2,
.katex .fontsize-ensurer.reset-size5.size2 {
  font-size: 0.66666667em;
}

.katex .sizing.reset-size5.size3,
.katex .fontsize-ensurer.reset-size5.size3 {
  font-size: 0.77777778em;
}

.katex .sizing.reset-size5.size4,
.katex .fontsize-ensurer.reset-size5.size4 {
  font-size: 0.88888889em;
}

.katex .sizing.reset-size5.size5,
.katex .fontsize-ensurer.reset-size5.size5 {
  font-size: 1em;
}

.katex .sizing.reset-size5.size6,
.katex .fontsize-ensurer.reset-size5.size6 {
  font-size: 1.11111111em;
}

.katex .sizing.reset-size5.size7,
.katex .fontsize-ensurer.reset-size5.size7 {
  font-size: 1.33333333em;
}

.katex .sizing.reset-size5.size8,
.katex .fontsize-ensurer.reset-size5.size8 {
  font-size: 1.6em;
}

.katex .sizing.reset-size5.size9,
.katex .fontsize-ensurer.reset-size5.size9 {
  font-size: 1.92em;
}

.katex .sizing.reset-size5.size10,
.katex .fontsize-ensurer.reset-size5.size10 {
  font-size: 2.30444444em;
}

.katex .sizing.reset-size5.size11,
.katex .fontsize-ensurer.reset-size5.size11 {
  font-size: 2.76444444em;
}

.katex .sizing.reset-size6.size1,
.katex .fontsize-ensurer.reset-size6.size1 {
  font-size: 0.5em;
}

.katex .sizing.reset-size6.size2,
.katex .fontsize-ensurer.reset-size6.size2 {
  font-size: 0.6em;
}

.katex .sizing.reset-size6.size3,
.katex .fontsize-ensurer.reset-size6.size3 {
  font-size: 0.7em;
}

.katex .sizing.reset-size6.size4,
.katex .fontsize-ensurer.reset-size6.size4 {
  font-size: 0.8em;
}

.katex .sizing.reset-size6.size5,
.katex .fontsize-ensurer.reset-size6.size5 {
  font-size: 0.9em;
}

.katex .sizing.reset-size6.size6,
.katex .fontsize-ensurer.reset-size6.size6 {
  font-size: 1em;
}

.katex .sizing.reset-size6.size7,
.katex .fontsize-ensurer.reset-size6.size7 {
  font-size: 1.2em;
}

.katex .sizing.reset-size6.size8,
.katex .fontsize-ensurer.reset-size6.size8 {
  font-size: 1.44em;
}

.katex .sizing.reset-size6.size9,
.katex .fontsize-ensurer.reset-size6.size9 {
  font-size: 1.728em;
}

.katex .sizing.reset-size6.size10,
.katex .fontsize-ensurer.reset-size6.size10 {
  font-size: 2.074em;
}

.katex .sizing.reset-size6.size11,
.katex .fontsize-ensurer.reset-size6.size11 {
  font-size: 2.488em;
}

.katex .sizing.reset-size7.size1,
.katex .fontsize-ensurer.reset-size7.size1 {
  font-size: 0.41666667em;
}

.katex .sizing.reset-size7.size2,
.katex .fontsize-ensurer.reset-size7.size2 {
  font-size: 0.5em;
}

.katex .sizing.reset-size7.size3,
.katex .fontsize-ensurer.reset-size7.size3 {
  font-size: 0.58333333em;
}

.katex .sizing.reset-size7.size4,
.katex .fontsize-ensurer.reset-size7.size4 {
  font-size: 0.66666667em;
}

.katex .sizing.reset-size7.size5,
.katex .fontsize-ensurer.reset-size7.size5 {
  font-size: 0.75em;
}

.katex .sizing.reset-size7.size6,
.katex .fontsize-ensurer.reset-size7.size6 {
  font-size: 0.83333333em;
}

.katex .sizing.reset-size7.size7,
.katex .fontsize-ensurer.reset-size7.size7 {
  font-size: 1em;
}

.katex .sizing.reset-size7.size8,
.katex .fontsize-ensurer.reset-size7.size8 {
  font-size: 1.2em;
}

.katex .sizing.reset-size7.size9,
.katex .fontsize-ensurer.reset-size7.size9 {
  font-size: 1.44em;
}

.katex .sizing.reset-size7.size10,
.katex .fontsize-ensurer.reset-size7.size10 {
  font-size: 1.72833333em;
}

.katex .sizing.reset-size7.size11,
.katex .fontsize-ensurer.reset-size7.size11 {
  font-size: 2.07333333em;
}

.katex .sizing.reset-size8.size1,
.katex .fontsize-ensurer.reset-size8.size1 {
  font-size: 0.34722222em;
}

.katex .sizing.reset-size8.size2,
.katex .fontsize-ensurer.reset-size8.size2 {
  font-size: 0.41666667em;
}

.katex .sizing.reset-size8.size3,
.katex .fontsize-ensurer.reset-size8.size3 {
  font-size: 0.48611111em;
}

.katex .sizing.reset-size8.size4,
.katex .fontsize-ensurer.reset-size8.size4 {
  font-size: 0.55555556em;
}

.katex .sizing.reset-size8.size5,
.katex .fontsize-ensurer.reset-size8.size5 {
  font-size: 0.625em;
}

.katex .sizing.reset-size8.size6,
.katex .fontsize-ensurer.reset-size8.size6 {
  font-size: 0.69444444em;
}

.katex .sizing.reset-size8.size7,
.katex .fontsize-ensurer.reset-size8.size7 {
  font-size: 0.83333333em;
}

.katex .sizing.reset-size8.size8,
.katex .fontsize-ensurer.reset-size8.size8 {
  font-size: 1em;
}

.katex .sizing.reset-size8.size9,
.katex .fontsize-ensurer.reset-size8.size9 {
  font-size: 1.2em;
}

.katex .sizing.reset-size8.size10,
.katex .fontsize-ensurer.reset-size8.size10 {
  font-size: 1.44027778em;
}

.katex .sizing.reset-size8.size11,
.katex .fontsize-ensurer.reset-size8.size11 {
  font-size: 1.72777778em;
}

.katex .sizing.reset-size9.size1,
.katex .fontsize-ensurer.reset-size9.size1 {
  font-size: 0.28935185em;
}

.katex .sizing.reset-size9.size2,
.katex .fontsize-ensurer.reset-size9.size2 {
  font-size: 0.34722222em;
}

.katex .sizing.reset-size9.size3,
.katex .fontsize-ensurer.reset-size9.size3 {
  font-size: 0.40509259em;
}

.katex .sizing.reset-size9.size4,
.katex .fontsize-ensurer.reset-size9.size4 {
  font-size: 0.46296296em;
}

.katex .sizing.reset-size9.size5,
.katex .fontsize-ensurer.reset-size9.size5 {
  font-size: 0.52083333em;
}

.katex .sizing.reset-size9.size6,
.katex .fontsize-ensurer.reset-size9.size6 {
  font-size: 0.5787037em;
}

.katex .sizing.reset-size9.size7,
.katex .fontsize-ensurer.reset-size9.size7 {
  font-size: 0.69444444em;
}

.katex .sizing.reset-size9.size8,
.katex .fontsize-ensurer.reset-size9.size8 {
  font-size: 0.83333333em;
}

.katex .sizing.reset-size9.size9,
.katex .fontsize-ensurer.reset-size9.size9 {
  font-size: 1em;
}

.katex .sizing.reset-size9.size10,
.katex .fontsize-ensurer.reset-size9.size10 {
  font-size: 1.20023148em;
}

.katex .sizing.reset-size9.size11,
.katex .fontsize-ensurer.reset-size9.size11 {
  font-size: 1.43981481em;
}

.katex .sizing.reset-size10.size1,
.katex .fontsize-ensurer.reset-size10.size1 {
  font-size: 0.24108004em;
}

.katex .sizing.reset-size10.size2,
.katex .fontsize-ensurer.reset-size10.size2 {
  font-size: 0.28929605em;
}

.katex .sizing.reset-size10.size3,
.katex .fontsize-ensurer.reset-size10.size3 {
  font-size: 0.33751205em;
}

.katex .sizing.reset-size10.size4,
.katex .fontsize-ensurer.reset-size10.size4 {
  font-size: 0.38572806em;
}

.katex .sizing.reset-size10.size5,
.katex .fontsize-ensurer.reset-size10.size5 {
  font-size: 0.43394407em;
}

.katex .sizing.reset-size10.size6,
.katex .fontsize-ensurer.reset-size10.size6 {
  font-size: 0.48216008em;
}

.katex .sizing.reset-size10.size7,
.katex .fontsize-ensurer.reset-size10.size7 {
  font-size: 0.57859209em;
}

.katex .sizing.reset-size10.size8,
.katex .fontsize-ensurer.reset-size10.size8 {
  font-size: 0.69431051em;
}

.katex .sizing.reset-size10.size9,
.katex .fontsize-ensurer.reset-size10.size9 {
  font-size: 0.83317261em;
}

.katex .sizing.reset-size10.size10,
.katex .fontsize-ensurer.reset-size10.size10 {
  font-size: 1em;
}

.katex .sizing.reset-size10.size11,
.katex .fontsize-ensurer.reset-size10.size11 {
  font-size: 1.19961427em;
}

.katex .sizing.reset-size11.size1,
.katex .fontsize-ensurer.reset-size11.size1 {
  font-size: 0.20096463em;
}

.katex .sizing.reset-size11.size2,
.katex .fontsize-ensurer.reset-size11.size2 {
  font-size: 0.24115756em;
}

.katex .sizing.reset-size11.size3,
.katex .fontsize-ensurer.reset-size11.size3 {
  font-size: 0.28135048em;
}

.katex .sizing.reset-size11.size4,
.katex .fontsize-ensurer.reset-size11.size4 {
  font-size: 0.32154341em;
}

.katex .sizing.reset-size11.size5,
.katex .fontsize-ensurer.reset-size11.size5 {
  font-size: 0.36173633em;
}

.katex .sizing.reset-size11.size6,
.katex .fontsize-ensurer.reset-size11.size6 {
  font-size: 0.40192926em;
}

.katex .sizing.reset-size11.size7,
.katex .fontsize-ensurer.reset-size11.size7 {
  font-size: 0.48231511em;
}

.katex .sizing.reset-size11.size8,
.katex .fontsize-ensurer.reset-size11.size8 {
  font-size: 0.57877814em;
}

.katex .sizing.reset-size11.size9,
.katex .fontsize-ensurer.reset-size11.size9 {
  font-size: 0.69453376em;
}

.katex .sizing.reset-size11.size10,
.katex .fontsize-ensurer.reset-size11.size10 {
  font-size: 0.83360129em;
}

.katex .sizing.reset-size11.size11,
.katex .fontsize-ensurer.reset-size11.size11 {
  font-size: 1em;
}

.katex .delimsizing.size1 {
  font-family: KaTeX_Size1;
}

.katex .delimsizing.size2 {
  font-family: KaTeX_Size2;
}

.katex .delimsizing.size3 {
  font-family: KaTeX_Size3;
}

.katex .delimsizing.size4 {
  font-family: KaTeX_Size4;
}

.katex .delimsizing.mult .delim-size1 > span {
  font-family: KaTeX_Size1;
}

.katex .delimsizing.mult .delim-size4 > span {
  font-family: KaTeX_Size4;
}

.katex .nulldelimiter {
  display: inline-block;
  width: 0.12em;
}

.katex .delimcenter {
  position: relative;
}

.katex .op-symbol {
  position: relative;
}

.katex .op-symbol.small-op {
  font-family: KaTeX_Size1;
}

.katex .op-symbol.large-op {
  font-family: KaTeX_Size2;
}

.katex .op-limits > .vlist-t {
  text-align: center;
}

.katex .accent > .vlist-t {
  text-align: center;
}

.katex .accent .accent-body {
  position: relative;
}

.katex .accent .accent-body:not(.accent-full) {
  width: 0;
}

.katex .overlay {
  display: block;
}

.katex .mtable .vertical-separator {
  display: inline-block;
  min-width: 1px;
}

.katex .mtable .arraycolsep {
  display: inline-block;
}

.katex .mtable .col-align-c > .vlist-t {
  text-align: center;
}

.katex .mtable .col-align-l > .vlist-t {
  text-align: left;
}

.katex .mtable .col-align-r > .vlist-t {
  text-align: right;
}

.katex .svg-align {
  text-align: left;
}

.katex svg {
  display: block;
  position: absolute;
  width: 100%;
  height: inherit;
  fill: currentColor;
  stroke: currentColor;
  fill-rule: nonzero;
  fill-opacity: 1;
  stroke-width: 1;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-miterlimit: 4;
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  stroke-opacity: 1;
}

.katex svg path {
  stroke: none;
}

.katex img {
  border-style: none;
  min-width: 0;
  min-height: 0;
  max-width: none;
  max-height: none;
}

.katex .stretchy {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.katex .stretchy::before,
.katex .stretchy::after {
  content: "";
}

.katex .hide-tail {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.katex .halfarrow-left {
  position: absolute;
  left: 0;
  width: 50.2%;
  overflow: hidden;
}

.katex .halfarrow-right {
  position: absolute;
  right: 0;
  width: 50.2%;
  overflow: hidden;
}

.katex .brace-left {
  position: absolute;
  left: 0;
  width: 25.1%;
  overflow: hidden;
}

.katex .brace-center {
  position: absolute;
  left: 25%;
  width: 50%;
  overflow: hidden;
}

.katex .brace-right {
  position: absolute;
  right: 0;
  width: 25.1%;
  overflow: hidden;
}

.katex .x-arrow-pad {
  padding: 0 0.5em;
}

.katex .x-arrow,
.katex .mover,
.katex .munder {
  text-align: center;
}

.katex .boxpad {
  padding: 0 0.3em 0 0.3em;
}

.katex .fbox,
.katex .fcolorbox {
  box-sizing: border-box;
  border: 0.04em solid;
}

.katex .cancel-pad {
  padding: 0 0.2em 0 0.2em;
}

.katex .cancel-lap {
  margin-left: -0.2em;
  margin-right: -0.2em;
}

.katex .sout {
  border-bottom-style: solid;
  border-bottom-width: 0.08em;
}

.katex-display {
  display: block;
  margin: 1em 0;
  text-align: center;
}

.katex-display > .katex {
  display: block;
  text-align: center;
  white-space: nowrap;
}

.katex-display > .katex > .katex-html {
  display: block;
  position: relative;
}

.katex-display > .katex > .katex-html > .tag {
  position: absolute;
  right: 0;
}

.katex-display.leqno > .katex > .katex-html > .tag {
  left: 0;
  right: auto;
}

.katex-display.fleqn > .katex {
  text-align: left;
  padding-left: 2em;
}

/*!
 * jQuery UI Draggable 1.13.2
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */
.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

/*!
 * jQuery UI Resizable 1.13.2
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */
.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.noty_layout_mixin, #noty_layout__top, #noty_layout__topLeft, #noty_layout__topCenter, #noty_layout__topRight, #noty_layout__bottom, #noty_layout__bottomLeft, #noty_layout__bottomCenter, #noty_layout__bottomRight, #noty_layout__center, #noty_layout__centerLeft, #noty_layout__centerRight {
  position: fixed;
  margin: 0;
  padding: 0;
  z-index: 9999999;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0) scale(1, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  filter: blur(0);
  -webkit-filter: blur(0);
  max-width: 90%;
}

#noty_layout__top {
  top: 0;
  left: 5%;
  width: 90%;
}

#noty_layout__topLeft {
  top: 20px;
  left: 20px;
  width: 325px;
}

#noty_layout__topCenter {
  top: 5%;
  left: 50%;
  width: 325px;
  -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(calc(-50% - 0.5px)) translateZ(0) scale(1, 1);
}

#noty_layout__topRight {
  top: 20px;
  right: 20px;
  width: 325px;
}

#noty_layout__bottom {
  bottom: 0;
  left: 5%;
  width: 90%;
}

#noty_layout__bottomLeft {
  bottom: 20px;
  left: 20px;
  width: 325px;
}

#noty_layout__bottomCenter {
  bottom: 5%;
  left: 50%;
  width: 325px;
  -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(calc(-50% - 0.5px)) translateZ(0) scale(1, 1);
}

#noty_layout__bottomRight {
  bottom: 20px;
  right: 20px;
  width: 325px;
}

#noty_layout__center {
  top: 50%;
  left: 50%;
  width: 325px;
  -webkit-transform: translate(-webkit-calc(-50% - .5px), -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(calc(-50% - 0.5px), calc(-50% - 0.5px)) translateZ(0) scale(1, 1);
}

#noty_layout__centerLeft {
  top: 50%;
  left: 20px;
  width: 325px;
  -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(0, calc(-50% - 0.5px)) translateZ(0) scale(1, 1);
}

#noty_layout__centerRight {
  top: 50%;
  right: 20px;
  width: 325px;
  -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(0, calc(-50% - 0.5px)) translateZ(0) scale(1, 1);
}

.noty_progressbar {
  display: none;
}

.noty_has_timeout.noty_has_progressbar .noty_progressbar {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #646464;
  opacity: 0.2;
  filter: alpha(opacity=10);
}

.noty_bar {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, 0) scale(1, 1);
  transform: translate(0, 0) scale(1, 1);
  -webkit-font-smoothing: subpixel-antialiased;
  overflow: hidden;
}

.noty_effects_open {
  opacity: 0;
  -webkit-transform: translate(50%);
  -ms-transform: translate(50%);
  transform: translate(50%);
  -webkit-animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.noty_effects_close {
  -webkit-animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.noty_fix_effects_height {
  -webkit-animation: noty_anim_height 75ms ease-out;
  animation: noty_anim_height 75ms ease-out;
}

.noty_close_with_click {
  cursor: pointer;
}

.noty_close_button {
  position: absolute;
  top: 2px;
  right: 2px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.noty_close_button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.noty_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 10000;
  opacity: 0.3;
  left: 0;
  top: 0;
}

.noty_modal.noty_modal_open {
  opacity: 0;
  -webkit-animation: noty_modal_in 0.3s ease-out;
  animation: noty_modal_in 0.3s ease-out;
}

.noty_modal.noty_modal_close {
  -webkit-animation: noty_modal_out 0.3s ease-out;
  animation: noty_modal_out 0.3s ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes noty_modal_in {
  100% {
    opacity: 0.3;
  }
}
@keyframes noty_modal_in {
  100% {
    opacity: 0.3;
  }
}
@-webkit-keyframes noty_modal_out {
  100% {
    opacity: 0;
  }
}
@keyframes noty_modal_out {
  100% {
    opacity: 0;
  }
}
@keyframes noty_modal_out {
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes noty_anim_in {
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
}
@keyframes noty_anim_in {
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
}
@-webkit-keyframes noty_anim_out {
  100% {
    -webkit-transform: translate(50%);
    transform: translate(50%);
    opacity: 0;
  }
}
@keyframes noty_anim_out {
  100% {
    -webkit-transform: translate(50%);
    transform: translate(50%);
    opacity: 0;
  }
}
@-webkit-keyframes noty_anim_height {
  100% {
    height: 0;
  }
}
@keyframes noty_anim_height {
  100% {
    height: 0;
  }
}

.noty_theme__bootstrap-v4.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.noty_theme__bootstrap-v4.noty_bar .noty_body {
  padding: 0.75rem 1.25rem;
}

.noty_theme__bootstrap-v4.noty_bar .noty_buttons {
  padding: 10px;
}

.noty_theme__bootstrap-v4.noty_bar .noty_close_button {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.5;
  background: transparent;
}

.noty_theme__bootstrap-v4.noty_bar .noty_close_button:hover {
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.75;
}

.noty_theme__bootstrap-v4.noty_type__alert,
.noty_theme__bootstrap-v4.noty_type__notification {
  background-color: #fff;
  color: inherit;
}

.noty_theme__bootstrap-v4.noty_type__warning {
  background-color: #fcf8e3;
  color: #8a6d3b;
  border-color: #faebcc;
}

.noty_theme__bootstrap-v4.noty_type__error {
  background-color: #f2dede;
  color: #a94442;
  border-color: #ebccd1;
}

.noty_theme__bootstrap-v4.noty_type__info,
.noty_theme__bootstrap-v4.noty_type__information {
  background-color: #d9edf7;
  color: #31708f;
  border-color: #bce8f1;
}

.noty_theme__bootstrap-v4.noty_type__success {
  background-color: #dff0d8;
  color: #3c763d;
  border-color: #d6e9c6;
}

.col-width-1 {
  width: 1%;
}

.col-width-2 {
  width: 2%;
}

.col-width-3 {
  width: 3%;
}

.col-width-4 {
  width: 4%;
}

.col-width-5 {
  width: 5%;
}

.col-width-6 {
  width: 6%;
}

.col-width-7 {
  width: 7%;
}

.col-width-8 {
  width: 8%;
}

.col-width-9 {
  width: 9%;
}

.col-width-10 {
  width: 10%;
}

.col-width-11 {
  width: 11%;
}

.col-width-12 {
  width: 12%;
}

.col-width-13 {
  width: 13%;
}

.col-width-14 {
  width: 14%;
}

.col-width-15 {
  width: 15%;
}

.col-width-16 {
  width: 16%;
}

.col-width-17 {
  width: 17%;
}

.col-width-18 {
  width: 18%;
}

.col-width-19 {
  width: 19%;
}

.col-width-20 {
  width: 20%;
}

.col-width-21 {
  width: 21%;
}

.col-width-22 {
  width: 22%;
}

.col-width-23 {
  width: 23%;
}

.col-width-24 {
  width: 24%;
}

.col-width-25 {
  width: 25%;
}

.col-width-26 {
  width: 26%;
}

.col-width-27 {
  width: 27%;
}

.col-width-28 {
  width: 28%;
}

.col-width-29 {
  width: 29%;
}

.col-width-30 {
  width: 30%;
}

.col-width-31 {
  width: 31%;
}

.col-width-32 {
  width: 32%;
}

.col-width-33 {
  width: 33%;
}

.col-width-34 {
  width: 34%;
}

.col-width-35 {
  width: 35%;
}

.col-width-36 {
  width: 36%;
}

.col-width-37 {
  width: 37%;
}

.col-width-38 {
  width: 38%;
}

.col-width-39 {
  width: 39%;
}

.col-width-40 {
  width: 40%;
}

.col-width-41 {
  width: 41%;
}

.col-width-42 {
  width: 42%;
}

.col-width-43 {
  width: 43%;
}

.col-width-44 {
  width: 44%;
}

.col-width-45 {
  width: 45%;
}

.col-width-46 {
  width: 46%;
}

.col-width-47 {
  width: 47%;
}

.col-width-48 {
  width: 48%;
}

.col-width-49 {
  width: 49%;
}

.col-width-50 {
  width: 50%;
}

.col-width-51 {
  width: 51%;
}

.col-width-52 {
  width: 52%;
}

.col-width-53 {
  width: 53%;
}

.col-width-54 {
  width: 54%;
}

.col-width-55 {
  width: 55%;
}

.col-width-56 {
  width: 56%;
}

.col-width-57 {
  width: 57%;
}

.col-width-58 {
  width: 58%;
}

.col-width-59 {
  width: 59%;
}

.col-width-60 {
  width: 60%;
}

.col-width-61 {
  width: 61%;
}

.col-width-62 {
  width: 62%;
}

.col-width-63 {
  width: 63%;
}

.col-width-64 {
  width: 64%;
}

.col-width-65 {
  width: 65%;
}

.col-width-66 {
  width: 66%;
}

.col-width-67 {
  width: 67%;
}

.col-width-68 {
  width: 68%;
}

.col-width-69 {
  width: 69%;
}

.col-width-70 {
  width: 70%;
}

.col-width-71 {
  width: 71%;
}

.col-width-72 {
  width: 72%;
}

.col-width-73 {
  width: 73%;
}

.col-width-74 {
  width: 74%;
}

.col-width-75 {
  width: 75%;
}

.col-width-76 {
  width: 76%;
}

.col-width-77 {
  width: 77%;
}

.col-width-78 {
  width: 78%;
}

.col-width-79 {
  width: 79%;
}

.col-width-80 {
  width: 80%;
}

.col-width-81 {
  width: 81%;
}

.col-width-82 {
  width: 82%;
}

.col-width-83 {
  width: 83%;
}

.col-width-84 {
  width: 84%;
}

.col-width-85 {
  width: 85%;
}

.col-width-86 {
  width: 86%;
}

.col-width-87 {
  width: 87%;
}

.col-width-88 {
  width: 88%;
}

.col-width-89 {
  width: 89%;
}

.col-width-90 {
  width: 90%;
}

.col-width-91 {
  width: 91%;
}

.col-width-92 {
  width: 92%;
}

.col-width-93 {
  width: 93%;
}

.col-width-94 {
  width: 94%;
}

.col-width-95 {
  width: 95%;
}

.col-width-96 {
  width: 96%;
}

.col-width-97 {
  width: 97%;
}

.col-width-98 {
  width: 98%;
}

.col-width-99 {
  width: 99%;
}

.col-width-100 {
  width: 100%;
}

.smb-dropdown.dropleft .smb-dropdown-btn-icon {
  transform: rotate(90deg);
}
.smb-dropdown.dropup .smb-dropdown-btn-icon {
  transform: rotate(180deg);
}
.smb-dropdown.dropright .smb-dropdown-btn-icon {
  transform: rotate(270deg);
}
.smb-dropdown-btn {
  display: block;
  padding: 4px 8px;
  padding-right: 24px;
  font-size: 14px;
  max-width: 120px;
  color: #fff;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.smb-dropdown-btn.disabled {
  background-color: #222426;
  color: #4d4d4d;
  text-decoration: none;
  cursor: not-allowed;
}
.smb-dropdown-btn.disabled .smb-dropdown-btn-icon {
  color: #4d4d4d;
}
.smb-dropdown-btn.active {
  background-color: #3a3c40;
}
.smb-dropdown-btn:not(.disabled):hover, .smb-dropdown-btn:not(.disabled)[aria-expanded=true] {
  background-color: #3a3c40;
  color: #fff;
  text-decoration: none;
}
.smb-dropdown-btn:not(.disabled):hover .smb-dropdown-btn-icon, .smb-dropdown-btn:not(.disabled)[aria-expanded=true] .smb-dropdown-btn-icon {
  color: #fff;
}
.smb-dropdown-btn-icon {
  position: absolute;
  right: 8px;
  top: calc(50% - 6px);
  font-size: 12px;
  color: #666;
}
.smb-dropdown .dropdown-menu {
  width: 144px;
  min-width: unset;
  margin-top: 0;
  padding: 4px;
  border: none;
  border-radius: 4px;
  box-shadow: 0px 5px 20px rgba(122, 133, 153, 0.2);
  max-height: 300px;
  overflow-y: auto;
  background-color: #3a3c40;
}
.smb-dropdown .dropdown-divider {
  margin: 4px 0;
}
.smb-dropdown .dropdown-item {
  padding: 8px;
  font-size: 14px;
  color: #fff;
  border-radius: 2px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.smb-dropdown .dropdown-item.disabled {
  color: #4d4d4d;
  pointer-events: unset;
  cursor: not-allowed;
}
.smb-dropdown .dropdown-item:not(.disabled).active {
  background-color: unset;
  padding-left: 20px;
}
.smb-dropdown .dropdown-item:not(.disabled).active::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #408cff;
  margin-right: 8px;
  position: absolute;
  left: 12px;
  margin-top: 9px;
}
.smb-dropdown .dropdown-item:not(.disabled):hover {
  background-color: #44464a;
  color: #408cff;
}
.smb-dropdown .dropdown-item:not(.disabled).sidebar-team-list::before {
  margin-top: unset;
}
.smb-dropdown-treeview {
  position: relative;
  display: inline-block;
}
.smb-dropdown-treeview-menu {
  display: none;
  position: absolute;
  width: 144px;
  min-width: unset;
  margin-top: 0;
  padding: 4px;
  border: none;
  border-radius: 4px;
  box-shadow: 0px 5px 20px rgba(122, 133, 153, 0.2);
  max-height: 300px;
  background-color: #3a3c40;
}
.smb-dropdown-treeview-menu.show {
  display: block;
}
.smb-dropdown-treeview-menu .smb-dropdown-btn {
  max-width: unset;
  border: 0;
}

@font-face {
  font-family: "smb-icon"; /* Project id 2564562 */
  src: url(//at.alicdn.com/t/c/font_2564562_3bwzlmzoip.woff2?t=1712544897181) format("woff2"), url(//at.alicdn.com/t/c/font_2564562_3bwzlmzoip.woff?t=1712544897181) format("woff"), url(//at.alicdn.com/t/c/font_2564562_3bwzlmzoip.ttf?t=1712544897181) format("truetype");
}
.smb-icon {
  font-family: "smb-icon" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.smb-icon-video-course:before {
  content: "\e8e1";
}

.smb-icon-homepage1:before {
  content: "\e8e0";
}

.smb-icon-position-full:before {
  content: "\e8dd";
}

.smb-icon-level:before {
  content: "\e8de";
}

.smb-icon-level-full:before {
  content: "\e8df";
}

.smb-icon-position:before {
  content: "\e8dc";
}

.smb-icon-arrow-change-up:before {
  content: "\e8da";
}

.smb-icon-arrow-change-down:before {
  content: "\e8db";
}

.smb-icon-talent:before {
  content: "\e8d6";
}

.smb-icon-talent-full:before {
  content: "\e8d7";
}

.smb-icon-course-full:before {
  content: "\e8d8";
}

.smb-icon-course:before {
  content: "\e8d9";
}

.smb-icon-link:before {
  content: "\e8d3";
}

.smb-icon-present1:before {
  content: "\e8d4";
}

.smb-icon-share:before {
  content: "\e8d5";
}

.smb-icon-fold-up:before {
  content: "\e8d1";
}

.smb-icon-expand-down:before {
  content: "\e8d2";
}

.smb-icon-layout-right-reduce:before {
  content: "\e8d0";
}

.smb-icon-layout-expand1:before {
  content: "\e8cd";
}

.smb-icon-layout-reduce:before {
  content: "\e8ce";
}

.smb-icon-layout-left-reduce:before {
  content: "\e8cf";
}

.smb-icon-question-bank:before {
  content: "\e8cc";
}

.smb-icon-layout-default:before {
  content: "\e8c8";
}

.smb-icon-layout-expand-left:before {
  content: "\e8c9";
}

.smb-icon-layout-expand:before {
  content: "\e8ca";
}

.smb-icon-layout-expand-right:before {
  content: "\e8cb";
}

.smb-icon-layout:before {
  content: "\e8c7";
}

.smb-icon-tree:before {
  content: "\e8c6";
}

.smb-icon-high-validity:before {
  content: "\e8c4";
}

.smb-icon-quick-test:before {
  content: "\e8c5";
}

.smb-icon-mode:before {
  content: "\e8c3";
}

.smb-icon-post:before {
  content: "\e8c2";
}

.smb-icon-scan-qr:before {
  content: "\e8c1";
}

.smb-icon-questionnaire:before {
  content: "\e8c0";
}

.smb-icon-arrow-change:before {
  content: "\e8bf";
}

.smb-icon-PK:before {
  content: "\e8bd";
}

.smb-icon-detection1:before {
  content: "\e8be";
}

.smb-icon-scan:before {
  content: "\e8bc";
}

.smb-icon-picture-full:before {
  content: "\e8bb";
}

.smb-icon-icon-practical:before {
  content: "\e8ba";
}

.smb-icon-pass:before {
  content: "\e8b9";
}

.smb-icon-submit-the-test:before {
  content: "\e8b8";
}

.smb-icon-thumb-up:before {
  content: "\e8b4";
}

.smb-icon-thumb-up-hover:before {
  content: "\e8b5";
}

.smb-icon-thumb-down:before {
  content: "\e8b6";
}

.smb-icon-thumb-down-hover:before {
  content: "\e8b7";
}

.smb-icon-related:before {
  content: "\e8b3";
}

.smb-icon-idle-time:before {
  content: "\e600";
}

.smb-icon-leaf:before {
  content: "\e8b1";
}

.smb-icon-add-circle:before {
  content: "\e8b2";
}

.smb-icon-new-page:before {
  content: "\e8af";
}

.smb-icon-ic-radar-custom:before {
  content: "\e8ab";
}

.smb-icon-ic-radar:before {
  content: "\e8ac";
}

.smb-icon-skill-tree:before {
  content: "\e8ad";
}

.smb-icon-ic-logical:before {
  content: "\e8ae";
}

.smb-icon-ranking:before {
  content: "\e8aa";
}

.smb-icon-AID:before {
  content: "\e8a9";
}

.smb-icon-marking-correct-half:before {
  content: "\e8a6";
}

.smb-icon-marking-correct:before {
  content: "\e8a7";
}

.smb-icon-marking-error:before {
  content: "\e8a8";
}

.smb-icon-cheat-phone1:before {
  content: "\e8a4";
}

.smb-icon-cheat-phone-disable:before {
  content: "\e8a1";
}

.smb-icon-record-disable:before {
  content: "\e8a2";
}

.smb-icon-camera-disable:before {
  content: "\e8a3";
}

.smb-icon-cheat-replay:before {
  content: "\e883";
}

.smb-icon-cheat-phone:before {
  content: "\e884";
}

.smb-icon-cheat-voice:before {
  content: "\e885";
}

.smb-icon-cheat-screen-switching:before {
  content: "\e886";
}

.smb-icon-cheat-copy:before {
  content: "\e887";
}

.smb-icon-cheat-face:before {
  content: "\e888";
}

.smb-icon-cheat-random:before {
  content: "\e88a";
}

.smb-icon-cheat-monitor:before {
  content: "\e88c";
}

.smb-icon-cheat-random-questions:before {
  content: "\e89b";
}

.smb-icon-cheat-video:before {
  content: "\e89d";
}

.smb-icon-cheat-calibrate-id:before {
  content: "\e89e";
}

.smb-icon-add1:before {
  content: "\e882";
}

.smb-icon-modified:before {
  content: "\e880";
}

.smb-icon-ai-robot:before {
  content: "\e87b";
}

.smb-icon-candidate:before {
  content: "\e87f";
}

.smb-icon-move-menu:before {
  content: "\e87e";
}

.smb-icon-homepage:before {
  content: "\e878";
}

.smb-icon-personal:before {
  content: "\e87c";
}

.smb-icon-log-out1:before {
  content: "\e87d";
}

.smb-icon-customer-service:before {
  content: "\e630";
}

.smb-icon-menu-written-examination:before {
  content: "\e632";
}

.smb-icon-more-actions-linear:before {
  content: "\e637";
}

.smb-icon-question-mark:before {
  content: "\e638";
}

.smb-icon-tab-questions:before {
  content: "\e63b";
}

.smb-icon-tab-mine:before {
  content: "\e63f";
}

.smb-icon-tab-console:before {
  content: "\e642";
}

.smb-icon-personal-center:before {
  content: "\e65b";
}

.smb-icon-title:before {
  content: "\e65d";
}

.smb-icon-mark2:before {
  content: "\e666";
}

.smb-icon-menu-actions:before {
  content: "\e66e";
}

.smb-icon-check:before {
  content: "\e7c8";
}

.smb-icon-close:before {
  content: "\e7ca";
}

.smb-icon-arrow-button:before {
  content: "\e7cb";
}

.smb-icon-more-horizontal:before {
  content: "\e7cd";
}

.smb-icon-search:before {
  content: "\e7ce";
}

.smb-icon-question:before {
  content: "\e7cf";
}

.smb-icon-warning-circle:before {
  content: "\e7d0";
}

.smb-icon-arrow-drop-right:before {
  content: "\e7d2";
}

.smb-icon-arrow-drop-down:before {
  content: "\e7d3";
}

.smb-icon-arrow-drop-up:before {
  content: "\e7d5";
}

.smb-icon-lock-full:before {
  content: "\e7d6";
}

.smb-icon-conceal-full:before {
  content: "\e7dd";
}

.smb-icon-zoom-in:before {
  content: "\e7df";
}

.smb-icon-play-key:before {
  content: "\e7e1";
}

.smb-icon-code:before {
  content: "\e7e3";
}

.smb-icon-refresh:before {
  content: "\e7e4";
}

.smb-icon-idea:before {
  content: "\e7e5";
}

.smb-icon-time:before {
  content: "\e7e6";
}

.smb-icon-code-templet:before {
  content: "\e7e7";
}

.smb-icon-preview:before {
  content: "\e7e9";
}

.smb-icon-error:before {
  content: "\e7eb";
}

.smb-icon-file-full:before {
  content: "\e7ec";
}

.smb-icon-warning-subtract:before {
  content: "\e7ed";
}

.smb-icon-correct:before {
  content: "\e7ee";
}

.smb-icon-tooltip:before {
  content: "\e7ef";
}

.smb-icon-add-full:before {
  content: "\e7f0";
}

.smb-icon-operation-case:before {
  content: "\e7f1";
}

.smb-icon-edit-full:before {
  content: "\e7f2";
}

.smb-icon-info-rect:before {
  content: "\e7f3";
}

.smb-icon-follow:before {
  content: "\e7f5";
}

.smb-icon-notation:before {
  content: "\e7f8";
}

.smb-icon-operation:before {
  content: "\e7f9";
}

.smb-icon-stop:before {
  content: "\e7fb";
}

.smb-icon-list:before {
  content: "\e7fc";
}

.smb-icon-resume:before {
  content: "\e7fd";
}

.smb-icon-call-video:before {
  content: "\e800";
}

.smb-icon-chat:before {
  content: "\e802";
}

.smb-icon-detection:before {
  content: "\e808";
}

.smb-icon-feedback:before {
  content: "\e80a";
}

.smb-icon-locales:before {
  content: "\e816";
}

.smb-icon-logo:before {
  content: "\e81a";
}

.smb-icon-call-video-off:before {
  content: "\e81d";
}

.smb-icon-call-video-on:before {
  content: "\e820";
}

.smb-icon-pause-key:before {
  content: "\e825";
}

.smb-icon-resume-upload:before {
  content: "\e619";
}

.smb-icon-resume-download:before {
  content: "\e61a";
}

.smb-icon-call-microphone-on:before {
  content: "\e61b";
}

.smb-icon-call-microphone-off:before {
  content: "\e61e";
}

.smb-icon-minimum:before {
  content: "\e826";
}

.smb-icon-arrow-double-right:before {
  content: "\e827";
}

.smb-icon-arrow-double-left:before {
  content: "\e828";
}

.smb-icon-arrow-double-down:before {
  content: "\e82a";
}

.smb-icon-re-record:before {
  content: "\e82b";
}

.smb-icon-loop1:before {
  content: "\e82c";
}

.smb-icon-loop-stop:before {
  content: "\e82d";
}

.smb-icon-upload:before {
  content: "\e842";
}

.smb-icon-on-screen:before {
  content: "\e849";
}

.smb-icon-off-screen:before {
  content: "\e84a";
}

.smb-icon-remove-full:before {
  content: "\e854";
}

.smb-icon-trash-can:before {
  content: "\e855";
}

.smb-icon-move:before {
  content: "\e856";
}

.smb-icon-find:before {
  content: "\e85d";
}

.smb-icon-replacement:before {
  content: "\e85e";
}

.smb-icon-copy1:before {
  content: "\e85f";
}

.smb-icon-edit:before {
  content: "\e860";
}

.smb-icon-copy-link:before {
  content: "\e862";
}

.smb-icon-add:before {
  content: "\e865";
}

.smb-icon-configure:before {
  content: "\e867";
}

.smb-icon-loading:before {
  content: "\e655";
}

.smb-icon-operation-stop:before {
  content: "\e874";
}

.smb-icon-add-question-full:before {
  content: "\e876";
}

.smb-icon-add-question:before {
  content: "\e877";
}

.smb-icon-point:before {
  content: "\e879";
}

.smb-icon-point-checked:before {
  content: "\e87a";
}

.smb-icon-run-sql:before {
  content: "\e881";
}

.smb-icon-hot:before {
  content: "\e889";
}

.smb-icon-addition:before {
  content: "\e88b";
}

.smb-icon-remove:before {
  content: "\e88d";
}

.smb-icon-idea-full:before {
  content: "\e88e";
}

.smb-icon-square-fill:before {
  content: "\e88f";
}

.smb-icon-circle:before {
  content: "\e890";
}

.smb-icon-diamond:before {
  content: "\e891";
}

.smb-icon-circle-full:before {
  content: "\e892";
}

.smb-icon-square-fill-full:before {
  content: "\e893";
}

.smb-icon-test-case:before {
  content: "\e894";
}

.smb-icon-sound:before {
  content: "\e895";
}

.smb-icon-mute:before {
  content: "\e896";
}

.smb-icon-interview-room:before {
  content: "\e897";
}

.smb-icon-interview-ready:before {
  content: "\e898";
}

.smb-icon-debug:before {
  content: "\e899";
}

.smb-icon-interview-call:before {
  content: "\e89a";
}

.smb-icon-maximize:before {
  content: "\e89c";
}

.smb-icon-screen-on:before {
  content: "\e89f";
}

.smb-icon-screen-off:before {
  content: "\e8a0";
}

.smb-icon-reset:before {
  content: "\e8a5";
}

.smb-icon-quit:before {
  content: "\e8b0";
}

.smb-icon-user:before {
  content: "\e875";
}

.smb-icon-info:before {
  content: "\e873";
}

.smb-icon-notify:before {
  content: "\e871";
}

.smb-icon-group-view:before {
  content: "\e86d";
}

.smb-icon-list-view:before {
  content: "\e86e";
}

.smb-icon-time-full:before {
  content: "\e86f";
}

.smb-icon-warn:before {
  content: "\e86c";
}

.smb-icon-flash:before {
  content: "\e869";
}

.smb-icon-cheating:before {
  content: "\e86a";
}

.smb-icon-capture:before {
  content: "\e86b";
}

.smb-icon-switch2:before {
  content: "\e81b";
}

.smb-icon-link-countdown:before {
  content: "\e859";
}

.smb-icon-developer:before {
  content: "\e679";
}

.smb-icon-developer-active:before {
  content: "\e67a";
}

.smb-icon-top1:before {
  content: "\ee49";
}

.smb-icon-enterprise-hover:before {
  content: "\e653";
}

.smb-icon-enterprise-default:before {
  content: "\e654";
}

.smb-icon-invitation:before {
  content: "\e7fe";
}

.smb-icon-locale:before {
  content: "\e64a";
}

.smb-icon-wemeet:before {
  content: "\e648";
}

.smb-icon-question-bank-import:before {
  content: "\e647";
}

.smb-icon-user-phone:before {
  content: "\e7b5";
}

.smb-icon-mail:before {
  content: "\e7b6";
}

.smb-icon-github:before {
  content: "\e7b0";
}

.smb-icon-wechat:before {
  content: "\e7b1";
}

.smb-icon-work-wechat:before {
  content: "\e7b2";
}

.smb-icon-dingtalk:before {
  content: "\e7b3";
}

.smb-icon-mark-hover:before {
  content: "\e7ab";
}

.smb-icon-mark:before {
  content: "\e7ac";
}

.smb-icon-list-full:before {
  content: "\e7aa";
}

.smb-icon-list-mode:before {
  content: "\e7a9";
}

.smb-icon-preview-off:before {
  content: "\e7a7";
}

.smb-icon-replace:before {
  content: "\e7a6";
}

.smb-icon-code-full:before {
  content: "\e7a3";
}

.smb-icon-operation-full:before {
  content: "\e7a4";
}

.smb-icon-senior-member:before {
  content: "\e7a0";
}

.smb-icon-creation-member:before {
  content: "\e7a1";
}

.smb-icon-diamond-member:before {
  content: "\e7a2";
}

.smb-icon-algorithm:before {
  content: "\e797";
}

.smb-icon-basic-skills:before {
  content: "\e798";
}

.smb-icon-solve-problem:before {
  content: "\e799";
}

.smb-icon-programing-language:before {
  content: "\e79a";
}

.smb-icon-framework-tools:before {
  content: "\e79b";
}

.smb-icon-written-pad-message:before {
  content: "\e793";
}

.smb-icon-interview-message:before {
  content: "\e794";
}

.smb-icon-off-screen-full:before {
  content: "\e792";
}

.smb-icon-present-hover:before {
  content: "\e78a";
}

.smb-icon-image:before {
  content: "\e789";
}

.smb-icon-massage-hover:before {
  content: "\e788";
}

.smb-icon-full-screen:before {
  content: "\e786";
}

.smb-icon-example:before {
  content: "\e785";
}

.smb-icon-console-hover:before {
  content: "\e782";
}

.smb-icon-arrow-drop-left:before {
  content: "\e780";
}

.smb-icon-contribute:before {
  content: "\e710";
}

.smb-icon-contribute-active:before {
  content: "\e711";
}

.smb-icon-tooltips:before {
  content: "\e70f";
}

.smb-icon-drag:before {
  content: "\e70e";
}

.smb-icon-text-import:before {
  content: "\e70d";
}

.smb-icon-likeness:before {
  content: "\e707";
}

.smb-icon-sort:before {
  content: "\e709";
}

.smb-icon-switch:before {
  content: "\e70a";
}

.smb-icon-preview-active:before {
  content: "\e70c";
}

.smb-icon-warning:before {
  content: "\e6f9";
}

.smb-icon-arrow-left:before {
  content: "\e6fc";
}

.smb-icon-arrow-up:before {
  content: "\e6fd";
}

.smb-icon-arrow-right:before {
  content: "\e6fe";
}

.smb-icon-arrow-down:before {
  content: "\e6ff";
}

.smb-icon-arrow-text-button:before {
  content: "\e6fb";
}

.smb-icon-menu-ats:before {
  content: "\e6ec";
}

.smb-icon-menu-campus-recruitment:before {
  content: "\e6ed";
}

.smb-icon-menu-interview:before {
  content: "\e6ee";
}

.smb-icon-menu-social-recruitment:before {
  content: "\e6f0";
}

.smb-icon-menu-non-technical-interview:before {
  content: "\e6f7";
}

.smb-icon-console:before {
  content: "\e6f3";
}

.smb-icon-hamburger-menu:before {
  content: "\e6f1";
}

.smb-icon-log-out:before {
  content: "\e6eb";
}

.smb-icon-wechat-work:before {
  content: "\e6e9";
}

.smb-icon-wechat-work-active:before {
  content: "\e6ea";
}

.smb-icon-mine:before {
  content: "\e6e7";
}

.smb-icon-mine-active:before {
  content: "\e6e8";
}

.smb-icon-test-management:before {
  content: "\e6e4";
}

.smb-icon-test-management-active:before {
  content: "\e6e3";
}

.smb-icon-test-questions:before {
  content: "\e6e5";
}

.smb-icon-test-questions-active:before {
  content: "\e6e6";
}

.smb-icon-team-setup:before {
  content: "\e6e1";
}

.smb-icon-team-setup-active:before {
  content: "\e6e2";
}

.smb-icon-system-setup:before {
  content: "\e6df";
}

.smb-icon-system-setup-active:before {
  content: "\e6e0";
}

.smb-icon-member-management:before {
  content: "\e6dd";
}

.smb-icon-member-management-active:before {
  content: "\e6de";
}

.smb-icon-interview-questions:before {
  content: "\e6db";
}

.smb-icon-interview-questions-active:before {
  content: "\e6dc";
}

.smb-icon-interview-list:before {
  content: "\e6d9";
}

.smb-icon-interview-list-active:before {
  content: "\e6da";
}

.smb-icon-charge:before {
  content: "\e6d7";
}

.smb-icon-charge-active:before {
  content: "\e6d8";
}

.smb-icon-title-full:before {
  content: "\e6ce";
}

.smb-icon-export:before {
  content: "\e6cc";
}

.smb-icon-import:before {
  content: "\e6cf";
}

.smb-icon-send:before {
  content: "\e6d0";
}

.smb-icon-mail-full:before {
  content: "\e6d2";
}

.smb-icon-batch-default:before {
  content: "\e6d4";
}

.smb-icon-date:before {
  content: "\e6d6";
}

.smb-icon-approve:before {
  content: "\e6c7";
}

.smb-icon-massage:before {
  content: "\e6c0";
}

.smb-icon-present:before {
  content: "\e6c1";
}

.smb-icon-add-file:before {
  content: "\e6bf";
}

.smb-icon-team:before {
  content: "\e6c2";
}

.smb-icon-search-default:before {
  content: "\e6b7";
}

.smb-icon-star:before {
  content: "\e6bb";
}

.smb-icon-star-full:before {
  content: "\e6bc";
}

.smb-icon-file:before {
  content: "\e6b2";
}

.smb-icon-lock:before {
  content: "\e6b3";
}

.smb-icon-more:before {
  content: "\e6a2";
}

.smb-icon-sort-default:before {
  content: "\e69e";
}

.smb-icon-sort-amount-up:before {
  content: "\e69f";
}

.smb-icon-amount-down:before {
  content: "\e6a0";
}

.smb-icon-sort-hover:before {
  content: "\e6a1";
}

.smb-icon-expand:before {
  content: "\e69c";
}

.smb-icon-collapse:before {
  content: "\e69d";
}

.smb-icon {
  line-height: 1;
}

.smb-icon {
  font-family: "smb-icon" !important;
}

.smb-icon-lg {
  font-size: 20px;
}

.smb-mobile-icon {
  line-height: 1;
}

.smb-icon-sm {
  font-size: 12px;
}

.smb-icon-line-btn-style {
  color: #999;
  padding: 4px;
  cursor: pointer;
}
.smb-icon-line-btn-style:hover {
  color: #fff;
}
.smb-icon-line-btn-style.disabled {
  color: #4d4d4d;
  opacity: 0.4;
  cursor: not-allowed;
}

.smb-icon-area-btn-style {
  color: #fff;
  padding: 4px;
  font-size: 20px;
  cursor: pointer;
}
.smb-icon-area-btn-style:hover {
  color: #3a7ee6;
}

.smb-zoom-label, .smb-markdown-preview-wrap label.zoom-label, .smb-img-zoom-in-wrapper label.zoom-label {
  position: relative;
}
.smb-zoom-label i.smb-icon.smb-icon-zoom-in, .smb-markdown-preview-wrap label.zoom-label i.smb-icon.smb-icon-zoom-in, .smb-img-zoom-in-wrapper label.zoom-label i.smb-icon.smb-icon-zoom-in {
  position: absolute;
  right: 0;
  bottom: 12px;
  font-size: 15px;
  color: #ffffff;
  background-color: rgba(26, 26, 26, 0.4);
  border-radius: 8px 0 8px 0;
  padding: 8px;
}

.smb-img-zoom-in-wrapper input.zoom-input[type=checkbox] {
  display: none;
}
.smb-img-zoom-in-wrapper img.smb-img-zoom-in-out {
  transition: transform 0.25s ease;
  cursor: zoom-in;
  width: 160px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
}
.smb-img-zoom-in-wrapper input.zoom-input[type=checkbox]:checked ~ img.smb-img-zoom-in-out {
  cursor: zoom-out;
  width: 100%;
  height: auto;
}
.smb-img-zoom-in-wrapper input.zoom-input[type=checkbox]:checked ~ i.smb-icon.smb-icon-zoom-in {
  display: none;
}
.smb-markdown-preview-wrap img.smb-img-zoom-in-out {
  transition: transform 0.25s ease;
  cursor: zoom-in;
  width: 240px;
  height: 180px;
  border-radius: 8px;
  object-fit: contain;
}
.smb-markdown-preview-wrap label.zoom-label i.smb-icon {
  pointer-events: none;
}

.smb-pretty-scrollbar, .paas-pads-show-page .quick-deliver-list-wrapper .quick-deliver-list__body, .paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .paas-questions-tree-body {
  mask-image: linear-gradient(to top, transparent, black), linear-gradient(to left, transparent 3px, black 3px);
  mask-size: 100% 20000px;
  mask-position: left bottom;
  -webkit-mask-image: linear-gradient(to top, transparent, black), linear-gradient(to left, transparent 3px, black 3px);
  -webkit-mask-size: 100% 20000px;
  -webkit-mask-position: left bottom;
  transition: mask-position 0.3s, -webkit-mask-position 0.3s;
}
.smb-pretty-scrollbar::-webkit-scrollbar, .paas-pads-show-page .quick-deliver-list-wrapper .quick-deliver-list__body::-webkit-scrollbar, .paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .paas-questions-tree-body::-webkit-scrollbar {
  height: 0px;
  width: 3px;
}
.smb-pretty-scrollbar::-webkit-scrollbar-thumb, .paas-pads-show-page .quick-deliver-list-wrapper .quick-deliver-list__body::-webkit-scrollbar-thumb, .paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .paas-questions-tree-body::-webkit-scrollbar-thumb {
  -webkit-border-radius: 2px;
  background: rgba(51, 51, 51, 0.1607843137);
}
.smb-pretty-scrollbar::-webkit-scrollbar-corner, .paas-pads-show-page .quick-deliver-list-wrapper .quick-deliver-list__body::-webkit-scrollbar-corner, .paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .paas-questions-tree-body::-webkit-scrollbar-corner {
  background: #b1b1b2;
}
.smb-pretty-scrollbar:hover, .paas-pads-show-page .quick-deliver-list-wrapper .quick-deliver-list__body:hover, .paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .paas-questions-tree-body:hover {
  -webkit-mask-position: left top;
}

.exam-room-reports-show-page .smb-pretty-scrollbar, .exam-room-reports-show-page .paas-pads-show-page .quick-deliver-list-wrapper .quick-deliver-list__body, .paas-pads-show-page .quick-deliver-list-wrapper .exam-room-reports-show-page .quick-deliver-list__body, .exam-room-reports-show-page .paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .paas-questions-tree-body, .paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .exam-room-reports-show-page .paas-questions-tree-body {
  mask-image: unset;
  mask-size: unset;
  mask-position: left bottom;
  -webkit-mask-image: unset;
  -webkit-mask-size: unset;
  -webkit-mask-position: unset;
}

a:focus {
  box-shadow: none;
  outline: none;
}

.smb-bold {
  font-weight: 600;
}

.smb-flex, .paas-pads-show-page .mobile-choose-written-pad-questions__header .search-wrap, .paas-pads-show-page .mobile-choose-pad-questions__header, .paas-pads-show-page .mobile-switch-programming-language .el-drawer__wrapper .el-drawer__container .switch-programming-language .el-drawer__body .switch-programming-language-item__body, .paas-pads-show-page .noty-candidate-switch-screen-dialog .el-dialog__body .noty-infos, .paas-pads-show-page .confirm-dialog .confirm-wrap, .paas-pads-show-page .paas-question-body .paas-question-components, .paas-pads-show-page .paas-question-body, .paas-pads-show-page .drag-wrap.visible, .paas-pads-show-page .noty_layout .noty_theme__smb-paas-noty.noty_type__error .noty_body, .paas-pads-show-page .noty_layout .noty_theme__smb-paas-noty.noty_type__warning .noty_body, .paas-pads-show-page .noty_layout .noty_theme__smb-paas-noty.noty_type__success .noty_body, .paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group, .smb-search-component-panel__catalog-item .smb-search-component-items, .smb-search-component-panel__catalog-item {
  display: flex;
}

.smb-flex-center, .paas-pads-show-page #end-pad-dialog .next-interview-at-utc-group, .paas-pads-show-page #end-pad-dialog .open-next-interview-btn, .paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__content .collapse-icon, .paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .collapse-icon, .paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header, .paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .empty, .paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__content .collapse-icon, .paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-icon, .paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header, .paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .paas-questions-body-no-data, .paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .paas-questions-body-no-data, .paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__content .collapse-icon, .paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-icon, .paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__header, .paas-pads-show-page .el-drawer.mobile-resume-drawer .el-drawer__body .mobile-resume-drawer__container .mobile-resume-body__empty, .paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .close-btn, .paas-pads-show-page .mobile-switch-programming-language .el-drawer__wrapper .el-drawer__container .switch-programming-language .el-drawer__body .switch-programming-language-item__body .programming-language-item, .paas-pads-show-page .mobile-paas-question__footer .footer-right, .paas-pads-show-page .mobile-paas-question__footer, .paas-pads-show-page .mobile-paas-question__header, .paas-pads-show-page .mobile-footer__item, .paas-pads-show-page .mobile-header__finish, .paas-pads-show-page .mobile-header__console-entrance, .paas-pads-show-page .aside-menu-item-wrap .aside-menu-item, .paas-pads-show-page .aside-menu-item-wrap, .paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu .el-dropdown-menu__item .record-item .user-avatar,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu .el-dropdown-menu__item .record-item .user-avatar, .paas-pads-show-page .mobile-online-status .name-capital .user-avatar, .paas-pads-show-page .mobile-online-status .name-capital, .paas-pads-show-page .online-header .name-capital .user-avatar, .paas-pads-show-page .resume-body.empty .empty-wrap, .paas-pads-show-page .playback-bar-status .switch-speed-action, .paas-pads-show-page .playback-bar-action .bar-action, .paas-pads-show-page .pad-footer .pad-playback-bar, .paas-pads-show-page .invite-candidate-page .invite-candidate-panel .pads-wrap .pads-content, .paas-pads-show-page .answerareas-files-wrapper .answerareas-files-item .operation-group span, .paas-pads-show-page .drawing-question-page.is-mobile .drawing-question__header, .paas-pads-show-page .paas-testcase-panel .generate-testcase-wrap, .paas-pads-show-page .paas-logo-icon-wrap, .paas-pads-show-page .paas-logo, .paas-pads-show-page .el-select .el-input:not(.white-theme__input) .el-input__suffix, .paas-pads-show-page .el-input:not(.white-theme__input) .el-input__suffix, .smb-search-component-visible .smb-search-component-expand, .name-capital {
  display: flex;
  align-items: center;
  justify-content: center;
}

.smb-flex-align-center, .paas-pads-show-page #end-pad-dialog .has-next-interview-group .has-next-interview-type-select, .paas-pads-show-page #end-pad-dialog .has-next-interview-group .has-next-interview-swith, .paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .written-pad-question-info, .paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .collapse-title .question-op, .paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap__collect-icon, .paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap, .paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .collapse-title, .paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-op, .paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap__collect-icon, .paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap, .paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title, .paas-pads-show-page .mobile-choose-written-pad-questions__header .question-infos, .paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-op, .paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap__collect-icon, .paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap, .paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title, .paas-pads-show-page .mobile-choose-question-drawer .el-drawer__body .el-tabs__header, .paas-pads-show-page .mobile-more-actions-drawer .el-drawer__body .mobile-more-actions-drawer__copy-link-body .copy-link--action, .paas-pads-show-page .mobile-more-actions-drawer .el-drawer__body .mobile-more-actions-drawer__copy-link-body .copy-link--item, .paas-pads-show-page .mobile-more-actions-drawer .el-drawer__body .mobile-more-actions-drawer__pad-name, .paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .el-tabs__header, .paas-pads-show-page .mobile-switch-programming-language__btn-group .btn-item, .paas-pads-show-page .mobile-switch-programming-language__btn-group, .paas-pads-show-page .mobile-paas-question__footer, .paas-pads-show-page .mobile-footer, .paas-pads-show-page .mobile-header__left-column, .paas-pads-show-page .mobile-header, .paas-pads-show-page .chat-dialog-footer .chat-editor, .paas-pads-show-page .chat-dialog-content-message-header, .paas-pads-show-page .chat-dialog-header-title, .paas-pads-show-page .paas-question-panel-header, .paas-pads-show-page .dao-contextMenu.rc-dropdown .rc-menu-item, .paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu .el-dropdown-menu__item .record-item,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu .el-dropdown-menu__item .record-item, .paas-pads-show-page .playback-bar-loading, .paas-pads-show-page .playback-bar-status .live-mode-button, .paas-pads-show-page .playback-bar-status, .paas-pads-show-page .playback-bar-progress, .paas-pads-show-page .playback-bar-action, .paas-pads-show-page .playback-bar, .paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form .smb-btn, .paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form .d42-modal-footer .d42-btn, .paas-pads-show-page .d42-modal-footer .invite-candidate-page .invite-candidate-panel-body .el-form .d42-btn, .paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form-item__label .form-item-label, .paas-pads-show-page .drag-wrap .drag-header-title, .paas-pads-show-page .drag-wrap .drag-header, .paas-pads-show-page .answerareas-files-wrapper .answerareas-files-item, .paas-pads-show-page .el-drawer__header, .paas-pads-show-page .el-dropdown-menu:not(.white-theme) .el-dropdown-menu__item, .smb-search-component-input-wrap .smb-search-component__input-group, .smb-search-component-input-wrap .smb-search-component__check-group .check-group, .smb-search-component-input-wrap .smb-search-component__check-group, .smb-search-component-input-wrap, .selected-filter-items__content .selected-filter-item, .selected-filter-items__content, .selected-filter-items, .smb-search-component-panel__header, .smb-search-component-visible-items {
  display: flex;
  align-items: center;
}

.smb-flex-align-start {
  display: flex;
  align-items: start;
}

.smb-flex-justify-center {
  display: flex;
  justify-content: center;
}

.smb-flex-center-between, .paas-pads-show-page .chat-dialog-header, .smb-search-component-visible {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.smb-flex-center-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.smb-flex-column, .paas-pads-show-page .mobile-choose-question-drawer .el-drawer__body, .paas-pads-show-page .el-drawer.mobile-resume-drawer .el-drawer__body .mobile-resume-drawer__container, .paas-pads-show-page .mobile-paas-question-components__trigger, .paas-pads-show-page .mobile-paas-question__components_trigger, .paas-pads-show-page .mobile-paas-question, .paas-pads-show-page .resume, .paas-pads-show-page .pad-right-drawer, .smb-search-component {
  display: flex;
  flex-direction: column;
}

.smb-flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.smb-flex-shrink-0 {
  flex-shrink: 0;
}

.smb-flex-1 {
  flex: 1;
}

.title-size {
  font-size: 16px;
}

.title-size-md {
  font-size: 14px;
}

.title-size-sm {
  font-size: 12px;
}

.content-size {
  font-size: 14px;
}

.content-size-sm {
  font-size: 12px;
}

.evaluation-determined {
  color: #e57239;
}

.evaluation-passed {
  color: #47b28f;
}

.evaluation-eliminated {
  color: #d9574c;
}

.evaluation-customized {
  color: #52b8cc;
}

.color-helper-red {
  color: #d9574c;
}

.color-major-red {
  color: #d9574c;
}

.color-major-green {
  color: #47b28f;
}

.color-helper-orange {
  color: #e57239;
}

.color-major-blue {
  color: #408cff;
}

.color-helper-yellow {
  color: #e5a82e;
}

.border-top-none {
  border-top: unset !important;
}

.font-color-hint {
  color: #999;
}

.cursor-pointer {
  cursor: pointer;
}

.smb-resize-bar-vertical, .smb-resize-bar {
  position: relative;
  background-color: #17181a;
}
.smb-resize-bar-vertical:before, .smb-resize-bar:before, .smb-resize-bar-vertical:after, .smb-resize-bar:after {
  content: "";
  position: absolute;
  background-color: #666666;
}
.smb-resize-bar-vertical:hover, .smb-resize-bar:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.smb-resize-bar-vertical:hover::before, .smb-resize-bar:hover::before, .smb-resize-bar-vertical:hover::after, .smb-resize-bar:hover::after {
  background-color: #999999;
}

.smb-resize-bar {
  width: 8px;
  min-width: 8px;
  height: 100%;
  cursor: col-resize;
}
.smb-resize-bar__corner {
  width: 100%;
  height: 44px;
  background-color: #2e3033;
}
.smb-resize-bar:hover .smb-resize-bar__corner {
  background-color: unset;
}
.smb-resize-bar:active {
  background-color: #2366d2;
}
.smb-resize-bar:active .smb-resize-bar__corner {
  background-color: #2366d2;
}
.smb-resize-bar:active::after, .smb-resize-bar:active::before {
  background-color: #fff;
}
.smb-resize-bar:before {
  top: calc(50% - 10px);
  left: 2px;
  width: 1px;
  height: 20px;
}
.smb-resize-bar:after {
  top: calc(50% - 10px);
  left: 5px;
  width: 1px;
  height: 20px;
}

.smb-resize-bar-vertical {
  width: 100%;
  min-height: 8px;
  height: 8px;
  cursor: row-resize;
}
.smb-resize-bar-vertical:active {
  background-color: #2366d2;
}
.smb-resize-bar-vertical:active .smb-resize-bar__corner {
  background-color: #2366d2;
}
.smb-resize-bar-vertical:active::after, .smb-resize-bar-vertical:active::before {
  background-color: #fff;
}
.smb-resize-bar-vertical:before {
  left: calc(50% - 10px);
  top: 2px;
  width: 20px;
  height: 1px;
}
.smb-resize-bar-vertical:after {
  left: calc(50% - 10px);
  top: 5px;
  width: 20px;
  height: 1px;
}

.name-capital {
  text-transform: capitalize;
  width: 32px;
  min-width: 32px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 12px;
}

.custom-scroll, .paas-pads-show-page .el-drawer.mobile-interview-record-drawer .el-drawer__body .mobile-interview-record-drawer__code-mirror .CodeMirror .CodeMirror-vscrollbar, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-unittest, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer pre, .paas-pads-show-page .mobile-paas-question__body .paas-question-editor, .paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse, .paas-pads-show-page .interview-record-dialog-drag-wrap .interview-record .CodeMirror-vscrollbar, .paas-pads-show-page #interview-assess-dialog .el-dialog__body, .paas-pads-show-page .paas-question-panel .markdown-question pre, .paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .el-tab-pane__body, .paas-pads-show-page .pad-question-center-body .pad-question-center .el-tabs__content .el-tab-pane__body, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-root, .paas-pads-show-page .resume-body .resume-content.overflow-y-auto, .paas-pads-show-page .pad-footer, .paas-pads-show-page .paas-question-tab-panel .smb-tab-content-item-box > *:not(.smb-btn) > *, .paas-pads-show-page .paas-aside-menu, .paas-pads-show-page .paas-question-body .paas-question-components .markdown-question pre, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-unittest, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-debug .paas-question-debug, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer pre, .paas-pads-show-page .answerarea-aside-panel-body, .paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-vscrollbar,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-vscrollbar, .paas-pads-show-page .drawing-question-page .drawing-question .smbMxEditorContainer.smbMxEditorContainer-theme-dark .smbMxSidebarContainerExtraOuterWrapper, .paas-pads-show-page .paas-testcase-panel #testcase-detail-dialog .el-dialog .el-dialog__body, .paas-pads-show-page #paas-server-error-dialog .el-collapse .el-collapse-item__content {
  -webkit-overflow-scrolling: auto;
}
.custom-scroll::-webkit-scrollbar, .paas-pads-show-page .el-drawer.mobile-interview-record-drawer .el-drawer__body .mobile-interview-record-drawer__code-mirror .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-unittest::-webkit-scrollbar, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer pre::-webkit-scrollbar, .paas-pads-show-page .mobile-paas-question__body .paas-question-editor::-webkit-scrollbar, .paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse::-webkit-scrollbar, .paas-pads-show-page .interview-record-dialog-drag-wrap .interview-record .CodeMirror-vscrollbar::-webkit-scrollbar, .paas-pads-show-page #interview-assess-dialog .el-dialog__body::-webkit-scrollbar, .paas-pads-show-page .paas-question-panel .markdown-question pre::-webkit-scrollbar, .paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .el-tab-pane__body::-webkit-scrollbar, .paas-pads-show-page .pad-question-center-body .pad-question-center .el-tabs__content .el-tab-pane__body::-webkit-scrollbar, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-root::-webkit-scrollbar, .paas-pads-show-page .resume-body .resume-content.overflow-y-auto::-webkit-scrollbar, .paas-pads-show-page .pad-footer::-webkit-scrollbar, .paas-pads-show-page .paas-question-tab-panel .smb-tab-content-item-box > *:not(.smb-btn) > ::-webkit-scrollbar, .paas-pads-show-page .paas-aside-menu::-webkit-scrollbar, .paas-pads-show-page .paas-question-body .paas-question-components .markdown-question pre::-webkit-scrollbar, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-unittest::-webkit-scrollbar, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-debug .paas-question-debug::-webkit-scrollbar, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer pre::-webkit-scrollbar, .paas-pads-show-page .answerarea-aside-panel-body::-webkit-scrollbar, .paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar, .paas-pads-show-page .drawing-question-page .drawing-question .smbMxEditorContainer.smbMxEditorContainer-theme-dark .smbMxSidebarContainerExtraOuterWrapper::-webkit-scrollbar, .paas-pads-show-page .paas-testcase-panel #testcase-detail-dialog .el-dialog .el-dialog__body::-webkit-scrollbar, .paas-pads-show-page #paas-server-error-dialog .el-collapse .el-collapse-item__content::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
  cursor: pointer;
}
.custom-scroll::-webkit-scrollbar-thumb, .paas-pads-show-page .el-drawer.mobile-interview-record-drawer .el-drawer__body .mobile-interview-record-drawer__code-mirror .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar-thumb, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-unittest::-webkit-scrollbar-thumb, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer pre::-webkit-scrollbar-thumb, .paas-pads-show-page .mobile-paas-question__body .paas-question-editor::-webkit-scrollbar-thumb, .paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse::-webkit-scrollbar-thumb, .paas-pads-show-page .interview-record-dialog-drag-wrap .interview-record .CodeMirror-vscrollbar::-webkit-scrollbar-thumb, .paas-pads-show-page #interview-assess-dialog .el-dialog__body::-webkit-scrollbar-thumb, .paas-pads-show-page .paas-question-panel .markdown-question pre::-webkit-scrollbar-thumb, .paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .el-tab-pane__body::-webkit-scrollbar-thumb, .paas-pads-show-page .pad-question-center-body .pad-question-center .el-tabs__content .el-tab-pane__body::-webkit-scrollbar-thumb, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-root::-webkit-scrollbar-thumb, .paas-pads-show-page .resume-body .resume-content.overflow-y-auto::-webkit-scrollbar-thumb, .paas-pads-show-page .pad-footer::-webkit-scrollbar-thumb, .paas-pads-show-page .paas-question-tab-panel .smb-tab-content-item-box > *:not(.smb-btn) > ::-webkit-scrollbar-thumb, .paas-pads-show-page .paas-aside-menu::-webkit-scrollbar-thumb, .paas-pads-show-page .paas-question-body .paas-question-components .markdown-question pre::-webkit-scrollbar-thumb, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-unittest::-webkit-scrollbar-thumb, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-debug .paas-question-debug::-webkit-scrollbar-thumb, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer pre::-webkit-scrollbar-thumb, .paas-pads-show-page .answerarea-aside-panel-body::-webkit-scrollbar-thumb, .paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar-thumb,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar-thumb, .paas-pads-show-page .drawing-question-page .drawing-question .smbMxEditorContainer.smbMxEditorContainer-theme-dark .smbMxSidebarContainerExtraOuterWrapper::-webkit-scrollbar-thumb, .paas-pads-show-page .paas-testcase-panel #testcase-detail-dialog .el-dialog .el-dialog__body::-webkit-scrollbar-thumb, .paas-pads-show-page #paas-server-error-dialog .el-collapse .el-collapse-item__content::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.custom-scroll::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .el-drawer.mobile-interview-record-drawer .el-drawer__body .mobile-interview-record-drawer__code-mirror .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-unittest::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer pre::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .mobile-paas-question__body .paas-question-editor::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .interview-record-dialog-drag-wrap .interview-record .CodeMirror-vscrollbar::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page #interview-assess-dialog .el-dialog__body::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .paas-question-panel .markdown-question pre::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .el-tab-pane__body::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .pad-question-center-body .pad-question-center .el-tabs__content .el-tab-pane__body::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-root::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .resume-body .resume-content.overflow-y-auto::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .pad-footer::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .paas-question-tab-panel .smb-tab-content-item-box > *:not(.smb-btn) > ::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .paas-aside-menu::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .paas-question-body .paas-question-components .markdown-question pre::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-unittest::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-debug .paas-question-debug::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer pre::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .answerarea-aside-panel-body::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar-thumb:vertical,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .drawing-question-page .drawing-question .smbMxEditorContainer.smbMxEditorContainer-theme-dark .smbMxSidebarContainerExtraOuterWrapper::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page .paas-testcase-panel #testcase-detail-dialog .el-dialog .el-dialog__body::-webkit-scrollbar-thumb:vertical, .paas-pads-show-page #paas-server-error-dialog .el-collapse .el-collapse-item__content::-webkit-scrollbar-thumb:vertical {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.custom-scroll::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .el-drawer.mobile-interview-record-drawer .el-drawer__body .mobile-interview-record-drawer__code-mirror .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-unittest::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer pre::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .mobile-paas-question__body .paas-question-editor::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .interview-record-dialog-drag-wrap .interview-record .CodeMirror-vscrollbar::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page #interview-assess-dialog .el-dialog__body::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .paas-question-panel .markdown-question pre::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .el-tab-pane__body::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .pad-question-center-body .pad-question-center .el-tabs__content .el-tab-pane__body::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-root::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .resume-body .resume-content.overflow-y-auto::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .pad-footer::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .paas-question-tab-panel .smb-tab-content-item-box > *:not(.smb-btn) > ::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .paas-aside-menu::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .paas-question-body .paas-question-components .markdown-question pre::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-unittest::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-debug .paas-question-debug::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer pre::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .answerarea-aside-panel-body::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar-thumb:vertical:active,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .drawing-question-page .drawing-question .smbMxEditorContainer.smbMxEditorContainer-theme-dark .smbMxSidebarContainerExtraOuterWrapper::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page .paas-testcase-panel #testcase-detail-dialog .el-dialog .el-dialog__body::-webkit-scrollbar-thumb:vertical:active, .paas-pads-show-page #paas-server-error-dialog .el-collapse .el-collapse-item__content::-webkit-scrollbar-thumb:vertical:active {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.custom-scroll::-webkit-scrollbar-corner, .paas-pads-show-page .el-drawer.mobile-interview-record-drawer .el-drawer__body .mobile-interview-record-drawer__code-mirror .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar-corner, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-unittest::-webkit-scrollbar-corner, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer pre::-webkit-scrollbar-corner, .paas-pads-show-page .mobile-paas-question__body .paas-question-editor::-webkit-scrollbar-corner, .paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse::-webkit-scrollbar-corner, .paas-pads-show-page .interview-record-dialog-drag-wrap .interview-record .CodeMirror-vscrollbar::-webkit-scrollbar-corner, .paas-pads-show-page #interview-assess-dialog .el-dialog__body::-webkit-scrollbar-corner, .paas-pads-show-page .paas-question-panel .markdown-question pre::-webkit-scrollbar-corner, .paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .el-tab-pane__body::-webkit-scrollbar-corner, .paas-pads-show-page .pad-question-center-body .pad-question-center .el-tabs__content .el-tab-pane__body::-webkit-scrollbar-corner, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-root::-webkit-scrollbar-corner, .paas-pads-show-page .resume-body .resume-content.overflow-y-auto::-webkit-scrollbar-corner, .paas-pads-show-page .pad-footer::-webkit-scrollbar-corner, .paas-pads-show-page .paas-question-tab-panel .smb-tab-content-item-box > *:not(.smb-btn) > ::-webkit-scrollbar-corner, .paas-pads-show-page .paas-aside-menu::-webkit-scrollbar-corner, .paas-pads-show-page .paas-question-body .paas-question-components .markdown-question pre::-webkit-scrollbar-corner, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-unittest::-webkit-scrollbar-corner, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-debug .paas-question-debug::-webkit-scrollbar-corner, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer pre::-webkit-scrollbar-corner, .paas-pads-show-page .answerarea-aside-panel-body::-webkit-scrollbar-corner, .paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar-corner,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar-corner, .paas-pads-show-page .drawing-question-page .drawing-question .smbMxEditorContainer.smbMxEditorContainer-theme-dark .smbMxSidebarContainerExtraOuterWrapper::-webkit-scrollbar-corner, .paas-pads-show-page .paas-testcase-panel #testcase-detail-dialog .el-dialog .el-dialog__body::-webkit-scrollbar-corner, .paas-pads-show-page #paas-server-error-dialog .el-collapse .el-collapse-item__content::-webkit-scrollbar-corner {
  background-color: transparent;
}
.custom-scroll::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .el-drawer.mobile-interview-record-drawer .el-drawer__body .mobile-interview-record-drawer__code-mirror .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-unittest::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer pre::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .mobile-paas-question__body .paas-question-editor::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .interview-record-dialog-drag-wrap .interview-record .CodeMirror-vscrollbar::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page #interview-assess-dialog .el-dialog__body::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .paas-question-panel .markdown-question pre::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .el-tab-pane__body::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .pad-question-center-body .pad-question-center .el-tabs__content .el-tab-pane__body::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-root::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .resume-body .resume-content.overflow-y-auto::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .pad-footer::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .paas-question-tab-panel .smb-tab-content-item-box > *:not(.smb-btn) > ::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .paas-aside-menu::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .paas-question-body .paas-question-components .markdown-question pre::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-unittest::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-debug .paas-question-debug::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer pre::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .answerarea-aside-panel-body::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar-thumb:horizontal,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .drawing-question-page .drawing-question .smbMxEditorContainer.smbMxEditorContainer-theme-dark .smbMxSidebarContainerExtraOuterWrapper::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page .paas-testcase-panel #testcase-detail-dialog .el-dialog .el-dialog__body::-webkit-scrollbar-thumb:horizontal, .paas-pads-show-page #paas-server-error-dialog .el-collapse .el-collapse-item__content::-webkit-scrollbar-thumb:horizontal {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.custom-scroll::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .el-drawer.mobile-interview-record-drawer .el-drawer__body .mobile-interview-record-drawer__code-mirror .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-unittest::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer pre::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .mobile-paas-question__body .paas-question-editor::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .interview-record-dialog-drag-wrap .interview-record .CodeMirror-vscrollbar::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page #interview-assess-dialog .el-dialog__body::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .paas-question-panel .markdown-question pre::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .el-tab-pane__body::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .pad-question-center-body .pad-question-center .el-tabs__content .el-tab-pane__body::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-root::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .resume-body .resume-content.overflow-y-auto::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .pad-footer::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .paas-question-tab-panel .smb-tab-content-item-box > *:not(.smb-btn) > ::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .paas-aside-menu::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .paas-question-body .paas-question-components .markdown-question pre::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-unittest::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-debug .paas-question-debug::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer pre::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .answerarea-aside-panel-body::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar-thumb:horizontal:active,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-vscrollbar::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .drawing-question-page .drawing-question .smbMxEditorContainer.smbMxEditorContainer-theme-dark .smbMxSidebarContainerExtraOuterWrapper::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page .paas-testcase-panel #testcase-detail-dialog .el-dialog .el-dialog__body::-webkit-scrollbar-thumb:horizontal:active, .paas-pads-show-page #paas-server-error-dialog .el-collapse .el-collapse-item__content::-webkit-scrollbar-thumb:horizontal:active {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.overflow-mask-unset {
  -webkit-mask: unset !important;
}
.overflow-mask-x {
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.overflow-mask-x-left {
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000000 5%, #000000 100%);
}
.overflow-mask-x-right {
  -webkit-mask: linear-gradient(90deg, #000000, #000000 95%, transparent 100%);
}
.overflow-mask-x-both {
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000000 5%, #000000 95%, transparent 100%);
}

img.warning-subtract {
  width: 16px;
  height: 16px;
}

@keyframes loading-rotate {
  to {
    transform: rotate(1turn);
  }
}
@keyframes loading-dash {
  0% {
    stroke-dasharray: 5, 200;
  }
  50% {
    stroke-dasharray: 30, 180;
  }
  to {
    stroke-dasharray: 5, 200;
  }
}
.loading-svg {
  width: 16px;
  height: 16px;
  animation: loading-rotate 0.8s linear infinite;
}

.loading-svg-circle {
  animation: loading-dash 1s linear infinite;
  stroke-dasharray: 30, 180;
  stroke-dashoffset: 0;
  stroke-width: 4;
  stroke: #408cff;
  stroke-linecap: round;
}

html,
body {
  font-variant-numeric: tabular-nums;
  height: 100%;
}

.smb-mt-0 {
  margin-top: 0 !important;
}

.smb-mr-0 {
  margin-right: 0 !important;
}

.smb-mb-0 {
  margin-bottom: 0 !important;
}

.smb-ml-0 {
  margin-left: 0 !important;
}

.smb-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.smb-mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.smb-m-0 {
  margin: 0 !important;
}

.smb-pt-0 {
  padding-top: 0 !important;
}

.smb-pr-0 {
  padding-right: 0 !important;
}

.smb-pb-0 {
  padding-bottom: 0 !important;
}

.smb-pl-0 {
  padding-left: 0 !important;
}

.smb-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.smb-px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.smb-p-0 {
  padding: 0 !important;
}

.smb-mt-2 {
  margin-top: 2px !important;
}

.smb-mr-2 {
  margin-right: 2px !important;
}

.smb-mb-2 {
  margin-bottom: 2px !important;
}

.smb-ml-2 {
  margin-left: 2px !important;
}

.smb-my-2 {
  margin-top: 2px !important;
  margin-bottom: 2px !important;
}

.smb-mx-2 {
  margin-left: 2px !important;
  margin-right: 2px !important;
}

.smb-m-2 {
  margin: 2px !important;
}

.smb-pt-2 {
  padding-top: 2px !important;
}

.smb-pr-2 {
  padding-right: 2px !important;
}

.smb-pb-2 {
  padding-bottom: 2px !important;
}

.smb-pl-2 {
  padding-left: 2px !important;
}

.smb-py-2 {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

.smb-px-2 {
  padding-left: 2px !important;
  padding-right: 2px !important;
}

.smb-p-2 {
  padding: 2px !important;
}

.smb-mt-4 {
  margin-top: 4px !important;
}

.smb-mr-4 {
  margin-right: 4px !important;
}

.smb-mb-4 {
  margin-bottom: 4px !important;
}

.smb-ml-4 {
  margin-left: 4px !important;
}

.smb-my-4 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.smb-mx-4 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.smb-m-4 {
  margin: 4px !important;
}

.smb-pt-4 {
  padding-top: 4px !important;
}

.smb-pr-4 {
  padding-right: 4px !important;
}

.smb-pb-4 {
  padding-bottom: 4px !important;
}

.smb-pl-4 {
  padding-left: 4px !important;
}

.smb-py-4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.smb-px-4 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.smb-p-4 {
  padding: 4px !important;
}

.smb-mt-6 {
  margin-top: 6px !important;
}

.smb-mr-6 {
  margin-right: 6px !important;
}

.smb-mb-6 {
  margin-bottom: 6px !important;
}

.smb-ml-6 {
  margin-left: 6px !important;
}

.smb-my-6 {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
}

.smb-mx-6 {
  margin-left: 6px !important;
  margin-right: 6px !important;
}

.smb-m-6 {
  margin: 6px !important;
}

.smb-pt-6 {
  padding-top: 6px !important;
}

.smb-pr-6 {
  padding-right: 6px !important;
}

.smb-pb-6 {
  padding-bottom: 6px !important;
}

.smb-pl-6 {
  padding-left: 6px !important;
}

.smb-py-6 {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.smb-px-6 {
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.smb-p-6 {
  padding: 6px !important;
}

.smb-mt-8 {
  margin-top: 8px !important;
}

.smb-mr-8 {
  margin-right: 8px !important;
}

.smb-mb-8 {
  margin-bottom: 8px !important;
}

.smb-ml-8 {
  margin-left: 8px !important;
}

.smb-my-8 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.smb-mx-8 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.smb-m-8 {
  margin: 8px !important;
}

.smb-pt-8 {
  padding-top: 8px !important;
}

.smb-pr-8 {
  padding-right: 8px !important;
}

.smb-pb-8 {
  padding-bottom: 8px !important;
}

.smb-pl-8 {
  padding-left: 8px !important;
}

.smb-py-8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.smb-px-8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.smb-p-8 {
  padding: 8px !important;
}

.smb-mt-12 {
  margin-top: 12px !important;
}

.smb-mr-12 {
  margin-right: 12px !important;
}

.smb-mb-12 {
  margin-bottom: 12px !important;
}

.smb-ml-12 {
  margin-left: 12px !important;
}

.smb-my-12 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.smb-mx-12 {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

.smb-m-12 {
  margin: 12px !important;
}

.smb-pt-12 {
  padding-top: 12px !important;
}

.smb-pr-12 {
  padding-right: 12px !important;
}

.smb-pb-12 {
  padding-bottom: 12px !important;
}

.smb-pl-12 {
  padding-left: 12px !important;
}

.smb-py-12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.smb-px-12 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.smb-p-12 {
  padding: 12px !important;
}

.smb-mt-16 {
  margin-top: 16px !important;
}

.smb-mr-16 {
  margin-right: 16px !important;
}

.smb-mb-16 {
  margin-bottom: 16px !important;
}

.smb-ml-16 {
  margin-left: 16px !important;
}

.smb-my-16 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.smb-mx-16 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.smb-m-16 {
  margin: 16px !important;
}

.smb-pt-16 {
  padding-top: 16px !important;
}

.smb-pr-16 {
  padding-right: 16px !important;
}

.smb-pb-16 {
  padding-bottom: 16px !important;
}

.smb-pl-16 {
  padding-left: 16px !important;
}

.smb-py-16 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.smb-px-16 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.smb-p-16 {
  padding: 16px !important;
}

.smb-mt-20 {
  margin-top: 20px !important;
}

.smb-mr-20 {
  margin-right: 20px !important;
}

.smb-mb-20 {
  margin-bottom: 20px !important;
}

.smb-ml-20 {
  margin-left: 20px !important;
}

.smb-my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.smb-mx-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.smb-m-20 {
  margin: 20px !important;
}

.smb-pt-20 {
  padding-top: 20px !important;
}

.smb-pr-20 {
  padding-right: 20px !important;
}

.smb-pb-20 {
  padding-bottom: 20px !important;
}

.smb-pl-20 {
  padding-left: 20px !important;
}

.smb-py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.smb-px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.smb-p-20 {
  padding: 20px !important;
}

.smb-mt-32 {
  margin-top: 32px !important;
}

.smb-mr-32 {
  margin-right: 32px !important;
}

.smb-mb-32 {
  margin-bottom: 32px !important;
}

.smb-ml-32 {
  margin-left: 32px !important;
}

.smb-my-32 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.smb-mx-32 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.smb-m-32 {
  margin: 32px !important;
}

.smb-pt-32 {
  padding-top: 32px !important;
}

.smb-pr-32 {
  padding-right: 32px !important;
}

.smb-pb-32 {
  padding-bottom: 32px !important;
}

.smb-pl-32 {
  padding-left: 32px !important;
}

.smb-py-32 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.smb-px-32 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.smb-p-32 {
  padding: 32px !important;
}

.smb-mt-40 {
  margin-top: 40px !important;
}

.smb-mr-40 {
  margin-right: 40px !important;
}

.smb-mb-40 {
  margin-bottom: 40px !important;
}

.smb-ml-40 {
  margin-left: 40px !important;
}

.smb-my-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.smb-mx-40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.smb-m-40 {
  margin: 40px !important;
}

.smb-pt-40 {
  padding-top: 40px !important;
}

.smb-pr-40 {
  padding-right: 40px !important;
}

.smb-pb-40 {
  padding-bottom: 40px !important;
}

.smb-pl-40 {
  padding-left: 40px !important;
}

.smb-py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.smb-px-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.smb-p-40 {
  padding: 40px !important;
}

.smb-mt-auto {
  margin-top: auto;
}

.smb-mr-auto {
  margin-right: auto;
}

.smb-mb-auto {
  margin-bottom: auto;
}

.smb-ml-auto {
  margin-left: auto;
}

.amb-m-auto {
  margin: auto;
}

.smb-pt-auto {
  padding-top: auto;
}

.smb-pr-auto {
  padding-right: auto;
}

.smb-pb-auto {
  padding-bottom: auto;
}

.smb-pl-auto {
  padding-left: auto;
}

.smb-p-auto {
  padding: auto;
}

.smb-btn, .paas-pads-show-page .d42-modal-footer .d42-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  outline: none !important;
  white-space: nowrap;
  border: 1px solid transparent;
  padding: 7px 15px;
  user-select: none;
  -webkit-user-select: none;
  text-decoration: none;
}
.smb-btn:hover, .paas-pads-show-page .d42-modal-footer .d42-btn:hover {
  text-decoration: none;
}
.smb-btn-md {
  padding: 3px 7px;
}
.smb-btn-sm {
  padding: 1px 3px;
  border-radius: 2px;
  font-size: 12px;
}
.smb-btn-divider-white {
  position: relative;
}
.smb-btn-divider-white::after {
  display: block;
  content: " ";
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  top: 25%;
  right: -1px;
  width: 2px;
  height: 50%;
}
.smb-btn-group {
  display: flex;
}
.smb-btn-group .smb-btn:not(:last-child), .smb-btn-group .paas-pads-show-page .d42-modal-footer .d42-btn:not(:last-child), .paas-pads-show-page .d42-modal-footer .smb-btn-group .d42-btn:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.smb-btn-group .smb-btn:not(:first-child), .smb-btn-group .paas-pads-show-page .d42-modal-footer .d42-btn:not(:first-child), .paas-pads-show-page .d42-modal-footer .smb-btn-group .d42-btn:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.smb-btn-more {
  color: #666;
}
.smb-btn-more:hover {
  color: #fff;
}
.smb-btn-red {
  background-color: #cc3f33;
  color: #ffffff;
  border-color: #cc3f33;
}
.smb-btn-red:hover, .smb-btn-red.active {
  color: #ffffff;
  background-color: #b8392e;
  border-color: #b8392e;
}
.smb-btn-blue, .paas-pads-show-page .d42-modal-footer .d42-btn.d42-btn-primary {
  background-color: #408cff;
  color: #ffffff;
  border-color: #408cff;
}
.smb-btn-blue:not(.disabled):hover, .paas-pads-show-page .d42-modal-footer .d42-btn.d42-btn-primary:not(.disabled):hover, .smb-btn-blue:not(:disabled):hover, .paas-pads-show-page .d42-modal-footer .d42-btn.d42-btn-primary:not(:disabled):hover, .smb-btn-blue:not(.disabled).active, .paas-pads-show-page .d42-modal-footer .d42-btn.d42-btn-primary:not(.disabled).active, .smb-btn-blue:not(:disabled).active, .paas-pads-show-page .d42-modal-footer .d42-btn.d42-btn-primary:not(:disabled).active {
  color: #ffffff;
  background-color: #3a7ee6;
  border-color: #3a7ee6;
}
.smb-btn-outline, .paas-pads-show-page .d42-modal-footer .d42-btn.d42-btn-default, .paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search button:not([name=close]), .paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group button {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.smb-btn-outline:not([href]):hover, .smb-btn-outline:hover, .paas-pads-show-page .d42-modal-footer .d42-btn.d42-btn-default:hover, .paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search button:hover:not([name=close]), .paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group button:hover, .smb-btn-outline:not([href]).active, .smb-btn-outline.active, .paas-pads-show-page .d42-modal-footer .active.d42-btn.d42-btn-default, .paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search button.active:not([name=close]), .paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group button.active {
  border: 1px solid #408cff;
  color: #408cff;
  background-color: rgba(64, 140, 255, 0.05);
}
.smb-btn-yellow {
  color: #fff;
  background-color: #e5a82e;
  border-color: #e5a82e;
}
.smb-btn-yellow:hover {
  background-color: #ce9729;
  border-color: #ce9729;
}
.smb-btn-with-icon, .smb-btn-icon {
  padding: 7px;
}
.smb-btn-with-icon .smb-icon, .smb-btn-icon .smb-icon {
  font-size: 16px;
  margin-right: 4px;
}
.smb-btn-with-icon.smb-btn-md, .smb-btn-icon.smb-btn-md {
  padding: 3px;
}
.smb-btn-with-icon.smb-btn-md .smb-icon, .smb-btn-icon.smb-btn-md .smb-icon {
  font-size: 16px;
}
.smb-btn-with-icon.smb-btn-sm, .smb-btn-icon.smb-btn-sm {
  padding: 1px 3px;
}
.smb-btn-with-icon.smb-btn-sm .smb-icon, .smb-btn-icon.smb-btn-sm .smb-icon {
  font-size: 12px;
}
.smb-btn-icon .smb-icon {
  margin-right: unset;
}
.smb-btn-icon-sub {
  color: #cccccc;
  background-color: #f7f8fa;
  border: 1px solid #f0f1f2;
  border-radius: 4px;
}
.smb-btn-icon-sub:hover {
  color: #408cff;
  border-color: #408cff;
}
.smb-btn-custom-blue {
  border-radius: 2px;
  color: #408cff;
  background-color: rgba(64, 140, 255, 0.1);
  border: 1px solid rgba(64, 140, 255, 0.2);
}
.smb-btn-custom-blue:hover, .smb-btn-custom-blue.active {
  color: #3a7ee6;
  background-color: rgba(64, 140, 255, 0.2);
  border: 1px solid rgba(64, 140, 255, 0.4);
}
.smb-btn-custom-red {
  border-radius: 2px;
  color: #cc3f33;
  background-color: rgba(204, 63, 51, 0.1);
  border: 1px solid rgba(204, 63, 51, 0.2);
}
.smb-btn-custom-red:hover, .smb-btn-custom-red.active {
  color: #b8392e;
  background-color: rgba(204, 63, 51, 0.2);
  border: 1px solid rgba(204, 63, 51, 0.4);
}
.smb-btn-custom-orange {
  border-radius: 2px;
  color: #fa8e58;
  background-color: rgba(250, 142, 88, 0.1);
  border: 1px solid rgba(250, 142, 88, 0.2);
}
.smb-btn-custom-orange:hover, .smb-btn-custom-orange.active {
  color: #fa8e58;
  background-color: rgba(250, 142, 88, 0.2);
  border: 1px solid rgba(250, 142, 88, 0.4);
}
.smb-btn.disabled, .paas-pads-show-page .d42-modal-footer .disabled.d42-btn, .smb-btn.disabled:hover {
  background-color: #2e3033;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #666;
  cursor: not-allowed;
}

.smb-link, .paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .el-button {
  color: #408cff;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
}
.smb-link:hover, .paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .el-button:hover {
  color: #3a7ee6;
  text-decoration: none;
}
.smb-link.disabled, .paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .disabled.el-button {
  color: #4d4d4d;
  cursor: not-allowed;
}

nav.smb-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
  padding: 20px 0;
}
nav.smb-pagination .responsive-wrap-compatible {
  padding-top: 0 !important;
}
nav.smb-pagination .responsive-wrap-compatible > * {
  margin-top: 20px;
}
nav.smb-pagination .responsive-wrap-compatible-secondary {
  margin-top: 0;
}
nav.smb-pagination .responsive-wrap-compatible-secondary > * {
  margin-top: 20px;
}
nav.smb-pagination .smb-pagination-count {
  line-height: 28px;
  color: #999;
  font-size: 12px;
  flex: 1;
}
nav.smb-pagination > .smb-pagination-count {
  text-align: left;
}
nav.smb-pagination .smb-pagination-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 0;
}
nav.smb-pagination .smb-pagination-list .smb-page-item {
  min-width: 28px;
  height: 28px;
  border-radius: 4px;
}
nav.smb-pagination .smb-pagination-list .smb-page-item:not(:last-child) {
  margin-right: 8px;
}
nav.smb-pagination .smb-pagination-list .smb-page-item.smb-page-prev {
  margin-right: 0;
  border-radius: 4px 0 0 4px;
}
nav.smb-pagination .smb-pagination-list .smb-page-item.smb-page-next {
  border-radius: 0 4px 4px 0;
}
nav.smb-pagination .smb-pagination-list .mr-8 {
  margin-right: 8px;
}
nav.smb-pagination .smb-pagination-goto {
  margin-left: 40px;
  display: flex;
  align-items: center;
}
nav.smb-pagination .smb-pagination-goto .smb-pagination-goto-form {
  display: flex;
  align-items: center;
}
nav.smb-pagination .smb-pagination-goto .smb-pagination-goto-form * {
  margin-right: 8px;
}
nav.smb-pagination .smb-pagination-goto .smb-pagination-goto-form .smb-pagination-goto-input {
  width: 60px;
  height: 28px;
}
nav.smb-pagination .smb-pagination-goto .smb-pagination-goto-form .smb-pagination-goto-input::-webkit-outer-spin-button, nav.smb-pagination .smb-pagination-goto .smb-pagination-goto-form .smb-pagination-goto-input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}
nav.smb-pagination .smb-pagination-goto .smb-pagination-goto-form span.page-link-text {
  font-size: 12px;
  color: #ccc;
}
nav.smb-pagination .smb-pagination-goto > .smb-pagination-count {
  display: none;
}
@media (max-width: 991.98px) {
  nav.smb-pagination > .smb-pagination-count:not(.no-paginator) {
    display: none;
  }
  nav.smb-pagination .smb-pagination-goto {
    margin-left: unset;
  }
  nav.smb-pagination .smb-pagination-goto > .smb-pagination-count {
    display: block;
    text-align: right;
  }
}

.bootstrap-select.dropup.show .selectpicker + button.dropdown-toggle:after {
  content: "\e6fd";
  font-family: "smb-icon" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  border: unset;
}
.bootstrap-select.dropup.show .dropdown-item.active,
.bootstrap-select.dropup.show .dropdown-item:active {
  background-color: unset !important;
}

.bootstrap-select .selectpicker + button.dropdown-toggle {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 8px 12px;
  color: #fff;
  font-size: 14px;
}
.bootstrap-select .selectpicker + button.dropdown-toggle:active, .bootstrap-select .selectpicker + button.dropdown-toggle:focus, .bootstrap-select .selectpicker + button.dropdown-toggle[aria-expanded=true] {
  box-shadow: unset;
  background-color: unset !important;
  border: 1px solid #408cff;
  outline: unset !important;
}
.bootstrap-select .selectpicker + button.dropdown-toggle:after {
  content: "\e6fe";
  font-family: "smb-icon" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  border: unset;
}
.bootstrap-select .selectpicker + button.dropdown-toggle[aria-expanded=true]:after {
  content: "\e6ff";
  font-family: "smb-icon" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  border: unset;
}
.bootstrap-select div.dropdown-menu {
  padding: 4px;
  border: none;
  box-shadow: 0px 5px 20px rgba(122, 133, 153, 0.2);
  border-radius: 4px;
}
.bootstrap-select div.dropdown-menu .dropdown-item:active,
.bootstrap-select div.dropdown-menu .dropdown-item.active {
  background-color: unset !important;
}
.bootstrap-select div.dropdown-menu .bs-searchbox input {
  font-size: 12px;
}
.bootstrap-select div.dropdown-menu ul.dropdown-menu li.no-results {
  font-size: 12px;
  padding: 8px;
}
.bootstrap-select div.dropdown-menu ul.dropdown-menu li:hover, .bootstrap-select div.dropdown-menu ul.dropdown-menu li:active {
  background: rgba(51, 51, 51, 0.04) !important;
  border-radius: 4px;
}
.bootstrap-select div.dropdown-menu ul.dropdown-menu li a.dropdown-item {
  padding: 7.5px 12px;
  font-size: 14px;
  color: #fff;
}
.bootstrap-select div.dropdown-menu ul.dropdown-menu li a.dropdown-item:hover, .bootstrap-select div.dropdown-menu ul.dropdown-menu li a.dropdown-item:active {
  color: #408cff;
}
.bootstrap-select div.dropdown-menu ul.dropdown-menu li.active,
.bootstrap-select div.dropdown-menu ul.dropdown-menu li.active:active,
.bootstrap-select div.dropdown-menu ul.dropdown-menu li.active:hover,
.bootstrap-select div.dropdown-menu ul.dropdown-menu li.active:focus {
  background-color: rgba(51, 51, 51, 0.04) !important;
  outline: unset !important;
  border-radius: 4px;
}
.bootstrap-select div.dropdown-menu ul.dropdown-menu li.active a.dropdown-item.active,
.bootstrap-select div.dropdown-menu ul.dropdown-menu li.active:active a.dropdown-item.active,
.bootstrap-select div.dropdown-menu ul.dropdown-menu li.active:hover a.dropdown-item.active,
.bootstrap-select div.dropdown-menu ul.dropdown-menu li.active:focus a.dropdown-item.active {
  padding-left: 24px;
  background-color: unset !important;
  position: relative;
  color: #408cff;
}
.bootstrap-select div.dropdown-menu ul.dropdown-menu li.active a.dropdown-item.active:before,
.bootstrap-select div.dropdown-menu ul.dropdown-menu li.active:active a.dropdown-item.active:before,
.bootstrap-select div.dropdown-menu ul.dropdown-menu li.active:hover a.dropdown-item.active:before,
.bootstrap-select div.dropdown-menu ul.dropdown-menu li.active:focus a.dropdown-item.active:before {
  position: absolute;
  left: 12px;
  top: calc(50% - 2px);
  content: "";
  width: 4px;
  height: 4px;
  background: #408cff;
  border-radius: 50%;
}

.smb-dropdown.dropleft .smb-dropdown-btn-icon {
  transform: rotate(90deg);
}
.smb-dropdown.dropup .smb-dropdown-btn-icon {
  transform: rotate(180deg);
}
.smb-dropdown.dropright .smb-dropdown-btn-icon {
  transform: rotate(270deg);
}
.smb-dropdown-btn {
  display: block;
  padding: 4px 8px;
  padding-right: 24px;
  font-size: 14px;
  max-width: 120px;
  color: #fff;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.smb-dropdown-btn.disabled {
  background-color: #222426;
  color: #4d4d4d;
  text-decoration: none;
  cursor: not-allowed;
}
.smb-dropdown-btn.disabled .smb-dropdown-btn-icon {
  color: #4d4d4d;
}
.smb-dropdown-btn.active {
  background-color: #3a3c40;
}
.smb-dropdown-btn:not(.disabled):hover, .smb-dropdown-btn:not(.disabled)[aria-expanded=true] {
  background-color: #3a3c40;
  color: #fff;
  text-decoration: none;
}
.smb-dropdown-btn:not(.disabled):hover .smb-dropdown-btn-icon, .smb-dropdown-btn:not(.disabled)[aria-expanded=true] .smb-dropdown-btn-icon {
  color: #fff;
}
.smb-dropdown-btn-icon {
  position: absolute;
  right: 8px;
  top: calc(50% - 6px);
  font-size: 12px;
  color: #666;
}
.smb-dropdown .dropdown-menu {
  width: 144px;
  min-width: unset;
  margin-top: 0;
  padding: 4px;
  border: none;
  border-radius: 4px;
  box-shadow: 0px 5px 20px rgba(122, 133, 153, 0.2);
  max-height: 300px;
  overflow-y: auto;
  background-color: #3a3c40;
}
.smb-dropdown .dropdown-divider {
  margin: 4px 0;
}
.smb-dropdown .dropdown-item {
  padding: 8px;
  font-size: 14px;
  color: #fff;
  border-radius: 2px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.smb-dropdown .dropdown-item.disabled {
  color: #4d4d4d;
  pointer-events: unset;
  cursor: not-allowed;
}
.smb-dropdown .dropdown-item:not(.disabled).active {
  background-color: unset;
  padding-left: 20px;
}
.smb-dropdown .dropdown-item:not(.disabled).active::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #408cff;
  margin-right: 8px;
  position: absolute;
  left: 12px;
  margin-top: 9px;
}
.smb-dropdown .dropdown-item:not(.disabled):hover {
  background-color: #44464a;
  color: #408cff;
}
.smb-dropdown .dropdown-item:not(.disabled).sidebar-team-list::before {
  margin-top: unset;
}
.smb-dropdown-treeview {
  position: relative;
  display: inline-block;
}
.smb-dropdown-treeview-menu {
  display: none;
  position: absolute;
  width: 144px;
  min-width: unset;
  margin-top: 0;
  padding: 4px;
  border: none;
  border-radius: 4px;
  box-shadow: 0px 5px 20px rgba(122, 133, 153, 0.2);
  max-height: 300px;
  background-color: #3a3c40;
}
.smb-dropdown-treeview-menu.show {
  display: block;
}
.smb-dropdown-treeview-menu .smb-dropdown-btn {
  max-width: unset;
  border: 0;
}

.smb-list-tag {
  display: inline-flex;
  font-size: 12px;
  border-radius: 2px;
  white-space: nowrap;
  padding: 2px 4px;
}
.smb-list-tag-red {
  color: #983d35;
  background-color: rgba(217, 87, 76, 0.25);
}
.smb-list-tag-orange {
  color: #a05028;
  background-color: rgba(229, 114, 57, 0.25);
}
.smb-list-tag-yellow {
  color: #89651c;
  background-color: rgba(229, 168, 46, 0.25);
}
.smb-list-tag-green {
  color: #327d64;
  background-color: rgba(71, 178, 143, 0.25);
}
.smb-list-tag-blue {
  color: #2d62b3;
  background-color: rgba(64, 140, 255, 0.25);
}
.smb-list-tag-gray {
  color: #6e727a;
  background-color: rgba(184, 190, 204, 0.25);
}
.smb-list-tag-cyan {
  color: #39818f;
  background-color: rgba(82, 184, 204, 0.25);
}
.smb-list-tag-vip {
  font-weight: 800;
  color: #e08a5a;
  background-color: #f6d7c6;
  font-family: Akrobat;
  padding-top: 3px;
  padding-bottom: 1px;
}

.smb-menu-tag {
  display: inline-flex;
  white-space: nowrap;
  padding: 0 2px;
  border-radius: 0px 4px 4px 4px;
  color: #ffffff;
  font-size: 12px;
}
.smb-menu-tag-empty-red {
  background-color: transparent;
  border: 1px solid #cc3f33;
  color: #cc3f33;
}
.smb-menu-tag-blue {
  background-color: #408cff;
}
.smb-menu-tag-green {
  background-color: #47b28f;
}
.smb-menu-tag-red {
  background-color: #cc3f33;
}

.smb-account-tag {
  display: inline-flex;
  white-space: nowrap;
  position: relative;
  padding: 2px 4px 2px 20px;
  border-radius: 2px;
  color: #ffffff;
  font-size: 12px;
}
.smb-account-tag-icon {
  position: absolute;
  left: 2px;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
}
.smb-account-tag-create {
  background-color: #47b28f;
}
.smb-account-tag-diamond {
  background-color: #e57239;
}
.smb-account-tag-senior {
  background-color: #fff;
}

.smb-question-tag {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  border-radius: 0.125rem;
  padding: 0.125rem 0.25rem;
  white-space: nowrap;
}
.smb-question-tag-green {
  color: #3abf93;
  background-color: rgba(58, 192, 147, 0.25);
}
.smb-question-tag-yellow {
  color: #ffc34d;
  background-color: rgba(255, 195, 77, 0.25);
}
.smb-question-tag-red {
  color: #e08a5a;
  background-color: #f6d7c6;
}

.smb-border-tag {
  border-radius: 0.25rem;
  border: 1px solid rgba(58, 191, 147, 0.2);
  color: #333333;
  padding: 0.125rem 0.375rem;
}
.smb-border-tag-green {
  border-color: rgba(58, 191, 147, 0.2);
  background-color: rgba(58, 191, 147, 0.1);
}
.smb-border-tag-yellow {
  border-color: rgba(255, 195, 77, 0.2);
  background-color: rgba(255, 195, 77, 0.1);
}
.smb-border-tag-red {
  border-color: rgba(235, 84, 70, 0.2);
  background-color: rgba(235, 84, 70, 0.1);
}

.smb-state-tag {
  display: inline-flex;
  white-space: nowrap;
  position: relative;
  padding: 2px 4px 2px 14px;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
}
.smb-state-tag::before {
  position: absolute;
  left: 4px;
  top: calc(50% - 3px);
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.smb-state-tag-pending {
  color: #89651c;
  background-color: rgba(229, 168, 46, 0.2);
}
.smb-state-tag-pending:before {
  background-color: #e5a82e;
}
.smb-state-tag-completed {
  color: #81858f;
  background-color: rgba(184, 190, 204, 0.2);
}
.smb-state-tag-completed:before {
  background-color: #b8becc;
}
.smb-state-tag-completed-alt {
  color: #89651c;
  background-color: rgba(229, 168, 46, 0.2);
}
.smb-state-tag-completed-alt:before {
  background-color: #e5a82e;
}
.smb-state-tag-waiting {
  color: #2d62b3;
  background-color: rgba(64, 140, 255, 0.2);
}
.smb-state-tag-waiting:before {
  background-color: #408cff;
}
.smb-state-tag-processing {
  color: #327d64;
  background-color: rgba(71, 178, 143, 0.2);
}
.smb-state-tag-processing:before {
  background-color: #47b28f;
}
.smb-state-tag-failed {
  color: #983d35;
  background-color: rgba(217, 87, 76, 0.2);
}
.smb-state-tag-failed:before {
  background-color: #d9574c;
}
.smb-state-tag-failed-alt {
  color: #a05028;
  background-color: rgba(229, 114, 57, 0.2);
}
.smb-state-tag-failed-alt:before {
  background-color: #e57239;
}

.smb-ideograph {
  display: flex;
  padding: 0px 4px;
  align-items: flex-start;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 0 4px 4px 4px;
  border: 1px solid #3abf93;
  user-select: none;
}
.smb-ideograph--green {
  border: 1px solid #3abf93;
  color: #3abf93;
}

.tooltip.bs-tooltip-bottom .arrow::before, .tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #1a1a1a !important;
}
.tooltip.bs-tooltip-left .arrow::before, .tooltip.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #1a1a1a !important;
}
.tooltip.bs-tooltip-right .arrow::before, .tooltip.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #1a1a1a !important;
}
.tooltip.bs-tooltip-top .arrow::before, .tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #1a1a1a !important;
}
.tooltip.show {
  opacity: 1;
}
.tooltip .tooltip-inner {
  padding: 8px;
  text-align: left;
  background-color: #1a1a1a;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
}

/* 因为上面的 .tooltip 不适用项目里边通用的 tooltip 样式。固新建一个 */
.smb-tooltip {
  color: #999;
}

.smb-form-group {
  margin-bottom: 16px;
}

.smb-input, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .create-file-folder {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  background-color: #222426;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  min-width: 50px;
  min-height: 24px;
  padding: 8px 12px;
  outline: none;
  /* hide for number
  &::-webkit-outer-spin-button,
  &::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
  }
  */
}
.smb-input::-webkit-input-placeholder, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .create-file-folder::-webkit-input-placeholder {
  color: #666;
  font-size: inherit;
}
.smb-input:focus, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .create-file-folder:focus, .smb-input.tagsinput-focus, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .tagsinput-focus.create-file-folder {
  border: 1px solid #408cff;
  box-shadow: 0px 0px 1px 2px rgba(64, 143, 255, 0.2);
  caret-color: #408cff;
}
.smb-input:disabled, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .create-file-folder:disabled {
  background-color: #3a3c40;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
  cursor: not-allowed;
}

.smb-textarea {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  background-color: #222426;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  min-width: 50px;
  min-height: 24px;
  padding: 8px 12px;
  outline: none;
  /* hide for number
  &::-webkit-outer-spin-button,
  &::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
  }
  */
  padding: 12px;
  min-height: 160px;
  resize: none;
}
.smb-textarea::-webkit-input-placeholder {
  color: #666;
  font-size: inherit;
}
.smb-textarea:focus, .smb-textarea.tagsinput-focus {
  border: 1px solid #408cff;
  box-shadow: 0px 0px 1px 2px rgba(64, 143, 255, 0.2);
  caret-color: #408cff;
}
.smb-textarea:disabled {
  background-color: #3a3c40;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
  cursor: not-allowed;
}
.smb-textarea:focus-visible {
  outline: none;
}

.smb-form-label {
  margin-bottom: 6px;
  color: #fff;
  font-size: 14px;
  display: flex;
}

.smb-form-label-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.smb-form-label-group-content {
  margin-bottom: 0;
  color: #fff;
  font-size: 14px;
}
.smb-form-label-group-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.smb-form-label-group-options-item:not(:last-child) {
  margin-right: 10px;
}

.smb-form-inline-group {
  display: flex;
  align-items: flex-start;
}
.smb-form-inline-group .smb-form-inline-label {
  margin-bottom: 0;
  padding: 8px 0;
  font-size: 14px;
  color: #fff;
}
.smb-form-inline-group .smb-input-group {
  flex: 1;
}
.smb-form-inline-group .smb-input-group:not(:first-child) {
  margin-left: 12px;
}

.smb-form-hint {
  margin-top: 4px;
  font-size: 12px;
  color: #999;
}

.smb-invalid-feedback,
.smb-form-invalid {
  margin-top: 4px;
  font-size: 12px;
  color: #d9574c;
}

.smb-custom-control {
  position: relative;
  display: flex;
  min-height: 20px;
  padding-left: 24px;
}

.smb-custom-control-inline {
  display: inline-flex;
  margin-right: 16px;
}

.smb-custom-control-input {
  position: absolute;
  top: calc(50% - 8px);
  left: 0;
  z-index: -1;
  width: 16px;
  height: 16px;
  opacity: 0;
}

.smb-custom-control-input:checked ~ .smb-custom-control-label::before {
  color: #ffffff;
  border-color: #408cff;
  background-color: #408cff;
}

.smb-custom-checkbox .smb-custom-control-input:hover:not(:checked):not(:disabled) ~ .smb-custom-control-label::before,
.smb-custom-radio .smb-custom-control-input:hover:not(:checked):not(:disabled) ~ .smb-custom-control-label::before {
  border-color: #333333;
}

.smb-custom-control-input ~ .smb-custom-control-label {
  cursor: pointer;
}

.smb-custom-control-input[disabled] ~ .smb-custom-control-label,
.smb-custom-control-input:disabled ~ .smb-custom-control-label {
  color: #4d4d4d;
  cursor: not-allowed;
}

.smb-custom-control-input:checked[disabled] ~ .smb-custom-control-label::before,
.smb-custom-control-input:checked:disabled ~ .smb-custom-control-label::before {
  background-color: #408cff;
  border-color: rgba(64, 140, 255, 0);
}

.smb-custom-control-input[disabled] ~ .smb-custom-control-label::before,
.smb-custom-control-input:disabled ~ .smb-custom-control-label::before {
  opacity: 0.5;
}

.smb-custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
  font-size: 14px;
  color: #fff;
}

.smb-custom-control-label::before {
  position: absolute;
  top: calc(50% - 7px);
  left: -24px;
  display: block;
  width: 14px;
  height: 14px;
  pointer-events: none;
  content: "";
  background-color: #ffffff;
  border: #cccccc solid 1px;
}

.smb-custom-control-label::after {
  position: absolute;
  top: calc(50% - 8px);
  left: -25px;
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.smb-custom-checkbox .smb-custom-control-label::before {
  border-radius: 2px;
}

.smb-custom-checkbox .smb-custom-control-input:checked ~ .smb-custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.smb-custom-checkbox .smb-custom-control-input:indeterminate ~ .smb-custom-control-label::before {
  border-color: #ed1c24;
  background-color: #ed1c24;
}

.smb-custom-checkbox .smb-custom-control-input:indeterminate ~ .smb-custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.smb-custom-radio .smb-custom-control-label::before {
  border-radius: 50%;
}

.smb-custom-radio .smb-custom-control-input:checked ~ .smb-custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.smb-custom-switch {
  padding-left: 35px;
}

.smb-custom-switch .smb-custom-control-label::before {
  top: calc(50% - 8px);
  left: -35px;
  width: 28px;
  height: 16px;
  pointer-events: all;
  border-radius: 8px;
  background-color: #b8becc;
}

.smb-custom-switch .smb-custom-control-label::after {
  top: calc(50% - 5px);
  left: -32px;
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .smb-custom-switch .smb-custom-control-label::after {
    transition: none;
  }
}
.smb-custom-switch .smb-custom-control-input:checked ~ .smb-custom-control-label::after {
  background-color: #ffffff;
  transform: translateX(12px);
}

.select2-hidden-accessible {
  display: none;
}

.select2-container .select2-dropdown {
  background-color: #3a3c40;
}
.select2-container .select2-selection--single {
  padding: 8px 12px;
  height: unset;
}
.select2-container .select2-selection--single.smb-input, .select2-container .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .select2-selection--single.create-file-folder, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .select2-container .select2-selection--single.create-file-folder {
  background-color: #222426;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  color: #fff;
  padding-left: 0;
  padding-right: 0;
  line-height: unset;
  font-size: 14px;
}
.select2-container .select2-selection--single .select2-selection__arrow {
  color: #666;
  top: 0;
  bottom: 0;
  margin: auto;
}
.select2-container .select2-selection--single .select2-selection__arrow b {
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.select2-container .select2-selection--single .select2-selection__arrow .smb-icon {
  display: inline-block;
  line-height: 1.5;
}
.select2-container.select2-container--open .smb-input, .select2-container.select2-container--open .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .create-file-folder, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .select2-container.select2-container--open .create-file-folder {
  border: 1px solid #408cff;
  box-shadow: unset;
}
.select2-container.select2-container--open.select2-container--above .select2-selection--single .select2-selection__arrow .smb-icon.smb-icon-arrow-right {
  transform: rotate(-90deg);
}
.select2-container.select2-container--open.select2-container--below .select2-selection--single .select2-selection__arrow .smb-icon.smb-icon-arrow-right {
  transform: rotate(90deg);
}
.select2-container .select2-dropdown {
  border: none;
  box-shadow: 0px 5px 20px rgba(122, 133, 153, 0.2);
  border-radius: 4px;
  padding: 4px;
}
.select2-container .select2-dropdown .select2-results__option {
  padding: 7.5px 12px;
  color: #999;
}
.select2-container .select2-dropdown .select2-results__option.select2-results__option--selectable.select2-results__option--selected {
  padding-left: 24px;
  background: unset;
  position: relative;
  color: #408cff;
}
.select2-container .select2-dropdown .select2-results__option.select2-results__option--selectable.select2-results__option--selected::before {
  position: absolute;
  left: 12px;
  top: calc(50% - 2px);
  content: "";
  width: 4px;
  height: 4px;
  background: #408cff;
  border-radius: 50%;
}
.select2-container .select2-dropdown .select2-results__option.select2-results__option--selectable.select2-results__option--highlighted {
  background: rgba(255, 255, 255, 0.05);
}
.select2-container--disabled .select2-selection--single.smb-input:focus, .select2-container--disabled .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .select2-selection--single.create-file-folder:focus, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .select2-container--disabled .select2-selection--single.create-file-folder:focus {
  box-shadow: unset;
  border: 1px solid #cccccc;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #3a3c40;
  border: 1px solid #cccccc;
  color: #999;
  cursor: not-allowed;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  color: #ffffff;
}

.smb-select2-multiple + .select2-container .select2-selection--multiple {
  padding-top: 0;
  padding-bottom: 12px;
  min-height: 36px;
  border-color: #666;
  cursor: unset;
}
.smb-select2-multiple + .select2-container .select2-selection--multiple.smb-input, .smb-select2-multiple + .select2-container .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .select2-selection--multiple.create-file-folder, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .smb-select2-multiple + .select2-container .select2-selection--multiple.create-file-folder {
  padding-top: unset;
  padding-left: unset;
  padding-right: unset;
  background-color: #222426;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px !important;
}
.smb-select2-multiple + .select2-container .select2-selection--multiple .select2-selection__rendered {
  line-height: 32px;
}
.smb-select2-multiple + .select2-container .select2-selection--multiple .select2-selection__rendered li.select2-selection__choice {
  border: none;
  display: inline-flex;
  flex-direction: row-reverse;
  max-width: 100%;
  overflow: hidden;
  line-height: 1.5;
  padding: 0 4px 0 0;
  border-radius: 4px;
  font-size: 14px;
  background: rgba(184, 190, 204, 0.3019607843);
}
.smb-select2-multiple + .select2-container .select2-selection--multiple .select2-selection__rendered li.select2-selection__choice:hover {
  background-color: #408cff;
  color: #fff;
}
.smb-select2-multiple + .select2-container .select2-selection--multiple .select2-selection__rendered li.select2-selection__choice:hover button.select2-selection__choice__remove {
  background-color: #408cff;
  color: #fff;
}
.smb-select2-multiple + .select2-container .select2-selection--multiple .select2-selection__rendered li.select2-selection__choice button.select2-selection__choice__remove {
  position: inherit;
  padding: 0 2px 0 4px;
  border: unset;
}
.smb-select2-multiple + .select2-container .select2-selection--multiple .select2-selection__rendered li.select2-selection__choice button.select2-selection__choice__remove > span {
  background: unset;
}
.smb-select2-multiple + .select2-container .select2-selection--multiple .select2-selection__rendered li.select2-selection__choice button.select2-selection__choice__remove:hover {
  background-color: #408cff;
  color: #fff;
}
.smb-select2-multiple + .select2-container .select2-selection--multiple .select2-selection__rendered li.select2-selection__choice span.select2-selection__choice__display {
  padding-left: 4px;
}
.smb-select2-multiple + .select2-container.select2-container--open .smb-input, .smb-select2-multiple + .select2-container.select2-container--open .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .create-file-folder, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .smb-select2-multiple + .select2-container.select2-container--open .create-file-folder {
  border: 1px solid #408cff;
  box-shadow: unset;
}

.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-search {
  padding: 16px 4px 0;
  position: relative;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-search .select2-search__field {
  border-radius: 4px;
  border-color: #ccc;
  font-size: 14px;
  padding: 8px 12px;
  background-color: #222426;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-search .select2-search__field:focus {
  border: 1px solid #408cff;
  box-shadow: 0px 0px 1px 2px rgba(64, 143, 255, 0.2);
  caret-color: #408cff;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-search .select2-search__field::-webkit-input-placeholder {
  color: #666;
  font-size: inherit;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-search .search-icon {
  position: absolute;
  right: 16px;
  top: 24px;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-search .search-icon i {
  color: #ccc;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-search .reminder-info {
  margin: 12px 0;
  display: flex;
  justify-content: space-between;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-search .reminder-info > * {
  color: #999;
  font-size: 12px;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options {
  max-height: 240px;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option.select2-results__option--selectable.select2-results__option--selected {
  padding-left: 12px;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option.select2-results__option--selectable.select2-results__option--selected:before {
  display: none;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option.select2-results__option--disabled {
  padding-left: 12px;
  cursor: not-allowed;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option.select2-results__option--disabled:before {
  display: none;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option.select2-results__option--disabled .multiple-select-item {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option.select2-results__option--disabled .multiple-select-item .check-wrapper input[type=checkbox] {
  cursor: not-allowed;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option.select2-results__option--disabled .multiple-select-item .check-wrapper input[type=checkbox]:checked::before {
  border-style: solid;
  border-width: 0 0 2px 2px;
  height: 0.5em;
  width: 0.9em;
  -ms-transform: translate(-50%, -0.375em) rotate(-45deg);
  transform: translate(-50%, -0.375em) rotate(-45deg);
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option:not(:last-child) .multiple-select-item:after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 0;
  height: 1px;
  width: calc(100% - 24px);
  background-color: rgba(255, 255, 255, 0.05);
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option .multiple-select-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: -7.5px -12px;
  padding: 8px 12px 7px;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option .multiple-select-item .interviewer-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option .multiple-select-item .interviewer-info-wrapper {
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option .multiple-select-item .interviewer-info-wrapper .interviewer-name {
  color: #fff;
  font-size: 14px;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option .multiple-select-item .interviewer-info-wrapper .interviewer-info {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2px;
  color: #ccc;
  gap: 2px 24px;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option .multiple-select-item .interviewer-info-wrapper .interviewer-info .interviewer-info-item {
  font-size: 12px;
  display: flex;
  align-items: center;
  color: #999;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option .multiple-select-item .interviewer-info-wrapper .interviewer-info .interviewer-info-item i {
  margin-right: 2px;
}
@media (max-width: 767.98px) {
  .select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option .multiple-select-item .interviewer-info-wrapper .interviewer-info {
    flex-direction: column;
  }
  .select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option .multiple-select-item .interviewer-info-wrapper .interviewer-info .interviewer-info-item:not(:first-child) {
    margin-left: unset;
  }
  .select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option .multiple-select-item .interviewer-info-wrapper .interviewer-info .interviewer-info-item:before {
    display: none;
  }
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option .multiple-select-item .check-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  padding-left: 12px;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option .multiple-select-item .check-wrapper .multiple-select-item-text {
  white-space: nowrap;
  color: #fff;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option .multiple-select-item .check-wrapper input[type=checkbox] {
  cursor: pointer;
  margin-left: 8px;
  position: relative;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option .multiple-select-item .check-wrapper input[type=checkbox]:checked::before {
  color: #ffffff;
  border-color: #408cff;
  background-color: #408cff;
  transition: 0.15s;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option .multiple-select-item .check-wrapper input[type=checkbox]:checked::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
  transition: 0.15s;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option .multiple-select-item .check-wrapper input[type=checkbox]::before {
  position: absolute;
  top: calc(50% - 7px);
  right: 0;
  display: block;
  width: 14px;
  height: 14px;
  pointer-events: none;
  content: "";
  background-color: #ffffff;
  border: #cccccc solid 1px;
  border-radius: 2px;
}
.select2-container .select2-dropdown.smb-select2-multiple-dropdown .select2-results .select2-results__options .select2-results__option .multiple-select-item .check-wrapper input[type=checkbox]::after {
  position: absolute;
  top: calc(50% - 8px);
  right: -1px;
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.cm-s-smb-codemirror {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #222426;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
  z-index: 0;
  /*
  .CodeMirror-lines {
    padding: 8px 0;

    .CodeMirror-line {
      padding: 0 12px;
    }
  }
  */
}
.cm-s-smb-codemirror.CodeMirror-focused {
  border: 1px solid #408cff;
  box-shadow: 0px 0px 1px 2px rgba(64, 143, 255, 0.2);
}
.cm-s-smb-codemirror .CodeMirror-gutters {
  border-right: 1px solid #3a3c40;
  background-color: #3a3c40;
}
.cm-s-smb-codemirror .CodeMirror-linenumber {
  color: #666;
}
.cm-s-smb-codemirror .CodeMirror-cursor {
  border-left: 1px solid #408cff;
}
.cm-s-smb-codemirror pre.CodeMirror-placeholder {
  color: #999;
}
.cm-s-smb-codemirror .CodeMirror-scroll {
  max-height: 450px;
}
.cm-s-smb-codemirror .cm-keyword {
  color: #708;
}
.cm-s-smb-codemirror .cm-atom {
  color: #219;
}
.cm-s-smb-codemirror .cm-number {
  color: #164;
}
.cm-s-smb-codemirror .cm-def {
  color: #00f;
}
.cm-s-smb-codemirror .cm-variable-2 {
  color: #05a;
}
.cm-s-smb-codemirror .cm-variable-3,
.cm-s-smb-codemirror .cm-type {
  color: #085;
}
.cm-s-smb-codemirror .cm-comment {
  color: #a50;
}
.cm-s-smb-codemirror .cm-string {
  color: #a11;
}
.cm-s-smb-codemirror .cm-string-2 {
  color: #f50;
}
.cm-s-smb-codemirror .cm-meta {
  color: #555;
}
.cm-s-smb-codemirror .cm-qualifier {
  color: #555;
}
.cm-s-smb-codemirror .cm-builtin {
  color: #30a;
}
.cm-s-smb-codemirror .cm-bracket {
  color: #997;
}
.cm-s-smb-codemirror .cm-tag {
  color: #170;
}
.cm-s-smb-codemirror .cm-attribute {
  color: #00c;
}
.cm-s-smb-codemirror .cm-hr {
  color: #999;
}
.cm-s-smb-codemirror .cm-link {
  color: #00c;
}
.cm-s-smb-codemirror t .cm-error {
  color: #f00;
}

.smb-search {
  display: flex;
  position: relative;
  min-width: 50px;
  min-height: 36px;
  max-height: 36px;
}
.smb-search-input {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  background-color: #222426;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  min-width: 50px;
  min-height: 24px;
  padding: 8px 12px;
  outline: none;
  /* hide for number
  &::-webkit-outer-spin-button,
  &::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
  }
  */
  padding-right: 40px;
}
.smb-search-input::-webkit-input-placeholder {
  color: #666;
  font-size: inherit;
}
.smb-search-input:focus, .smb-search-input.tagsinput-focus {
  border: 1px solid #408cff;
  box-shadow: 0px 0px 1px 2px rgba(64, 143, 255, 0.2);
  caret-color: #408cff;
}
.smb-search-input:disabled {
  background-color: #3a3c40;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
  cursor: not-allowed;
}
.smb-search-width-200px {
  width: 200px;
}
.smb-search-width-201px {
  width: 201px;
}
.smb-search-width-202px {
  width: 202px;
}
.smb-search-width-203px {
  width: 203px;
}
.smb-search-width-204px {
  width: 204px;
}
.smb-search-width-205px {
  width: 205px;
}
.smb-search-width-206px {
  width: 206px;
}
.smb-search-width-207px {
  width: 207px;
}
.smb-search-width-208px {
  width: 208px;
}
.smb-search-width-209px {
  width: 209px;
}
.smb-search-width-210px {
  width: 210px;
}
.smb-search-width-211px {
  width: 211px;
}
.smb-search-width-212px {
  width: 212px;
}
.smb-search-width-213px {
  width: 213px;
}
.smb-search-width-214px {
  width: 214px;
}
.smb-search-width-215px {
  width: 215px;
}
.smb-search-width-216px {
  width: 216px;
}
.smb-search-width-217px {
  width: 217px;
}
.smb-search-width-218px {
  width: 218px;
}
.smb-search-width-219px {
  width: 219px;
}
.smb-search-width-220px {
  width: 220px;
}
.smb-search-width-221px {
  width: 221px;
}
.smb-search-width-222px {
  width: 222px;
}
.smb-search-width-223px {
  width: 223px;
}
.smb-search-width-224px {
  width: 224px;
}
.smb-search-width-225px {
  width: 225px;
}
.smb-search-width-226px {
  width: 226px;
}
.smb-search-width-227px {
  width: 227px;
}
.smb-search-width-228px {
  width: 228px;
}
.smb-search-width-229px {
  width: 229px;
}
.smb-search-width-230px {
  width: 230px;
}
.smb-search-width-231px {
  width: 231px;
}
.smb-search-width-232px {
  width: 232px;
}
.smb-search-width-233px {
  width: 233px;
}
.smb-search-width-234px {
  width: 234px;
}
.smb-search-width-235px {
  width: 235px;
}
.smb-search-width-236px {
  width: 236px;
}
.smb-search-width-237px {
  width: 237px;
}
.smb-search-width-238px {
  width: 238px;
}
.smb-search-width-239px {
  width: 239px;
}
.smb-search-width-240px {
  width: 240px;
}
.smb-search-width-241px {
  width: 241px;
}
.smb-search-width-242px {
  width: 242px;
}
.smb-search-width-243px {
  width: 243px;
}
.smb-search-width-244px {
  width: 244px;
}
.smb-search-width-245px {
  width: 245px;
}
.smb-search-width-246px {
  width: 246px;
}
.smb-search-width-247px {
  width: 247px;
}
.smb-search-width-248px {
  width: 248px;
}
.smb-search-width-249px {
  width: 249px;
}
.smb-search-width-250px {
  width: 250px;
}
.smb-search-width-251px {
  width: 251px;
}
.smb-search-width-252px {
  width: 252px;
}
.smb-search-width-253px {
  width: 253px;
}
.smb-search-width-254px {
  width: 254px;
}
.smb-search-width-255px {
  width: 255px;
}
.smb-search-width-256px {
  width: 256px;
}
.smb-search-width-257px {
  width: 257px;
}
.smb-search-width-258px {
  width: 258px;
}
.smb-search-width-259px {
  width: 259px;
}
.smb-search-width-260px {
  width: 260px;
}
.smb-search-width-261px {
  width: 261px;
}
.smb-search-width-262px {
  width: 262px;
}
.smb-search-width-263px {
  width: 263px;
}
.smb-search-width-264px {
  width: 264px;
}
.smb-search-width-265px {
  width: 265px;
}
.smb-search-width-266px {
  width: 266px;
}
.smb-search-width-267px {
  width: 267px;
}
.smb-search-width-268px {
  width: 268px;
}
.smb-search-width-269px {
  width: 269px;
}
.smb-search-width-270px {
  width: 270px;
}
.smb-search-width-271px {
  width: 271px;
}
.smb-search-width-272px {
  width: 272px;
}
.smb-search-width-273px {
  width: 273px;
}
.smb-search-width-274px {
  width: 274px;
}
.smb-search-width-275px {
  width: 275px;
}
.smb-search-width-276px {
  width: 276px;
}
.smb-search-width-277px {
  width: 277px;
}
.smb-search-width-278px {
  width: 278px;
}
.smb-search-width-279px {
  width: 279px;
}
.smb-search-width-280px {
  width: 280px;
}
.smb-search-width-281px {
  width: 281px;
}
.smb-search-width-282px {
  width: 282px;
}
.smb-search-width-283px {
  width: 283px;
}
.smb-search-width-284px {
  width: 284px;
}
.smb-search-width-285px {
  width: 285px;
}
.smb-search-width-286px {
  width: 286px;
}
.smb-search-width-287px {
  width: 287px;
}
.smb-search-width-288px {
  width: 288px;
}
.smb-search-width-289px {
  width: 289px;
}
.smb-search-width-290px {
  width: 290px;
}
.smb-search-width-291px {
  width: 291px;
}
.smb-search-width-292px {
  width: 292px;
}
.smb-search-width-293px {
  width: 293px;
}
.smb-search-width-294px {
  width: 294px;
}
.smb-search-width-295px {
  width: 295px;
}
.smb-search-width-296px {
  width: 296px;
}
.smb-search-width-297px {
  width: 297px;
}
.smb-search-width-298px {
  width: 298px;
}
.smb-search-width-299px {
  width: 299px;
}
.smb-search-width-300px {
  width: 300px;
}
.smb-search-width-301px {
  width: 301px;
}
.smb-search-width-302px {
  width: 302px;
}
.smb-search-width-303px {
  width: 303px;
}
.smb-search-width-304px {
  width: 304px;
}
.smb-search-width-305px {
  width: 305px;
}
.smb-search-width-306px {
  width: 306px;
}
.smb-search-width-307px {
  width: 307px;
}
.smb-search-width-308px {
  width: 308px;
}
.smb-search-width-309px {
  width: 309px;
}
.smb-search-width-310px {
  width: 310px;
}
.smb-search-width-311px {
  width: 311px;
}
.smb-search-width-312px {
  width: 312px;
}
.smb-search-width-313px {
  width: 313px;
}
.smb-search-width-314px {
  width: 314px;
}
.smb-search-width-315px {
  width: 315px;
}
.smb-search-width-316px {
  width: 316px;
}
.smb-search-width-317px {
  width: 317px;
}
.smb-search-width-318px {
  width: 318px;
}
.smb-search-width-319px {
  width: 319px;
}
.smb-search-width-320px {
  width: 320px;
}
.smb-search-width-321px {
  width: 321px;
}
.smb-search-width-322px {
  width: 322px;
}
.smb-search-width-323px {
  width: 323px;
}
.smb-search-width-324px {
  width: 324px;
}
.smb-search-width-325px {
  width: 325px;
}
.smb-search-width-326px {
  width: 326px;
}
.smb-search-width-327px {
  width: 327px;
}
.smb-search-width-328px {
  width: 328px;
}
.smb-search-width-329px {
  width: 329px;
}
.smb-search-width-330px {
  width: 330px;
}
.smb-search-width-331px {
  width: 331px;
}
.smb-search-width-332px {
  width: 332px;
}
.smb-search-width-333px {
  width: 333px;
}
.smb-search-width-334px {
  width: 334px;
}
.smb-search-width-335px {
  width: 335px;
}
.smb-search-width-336px {
  width: 336px;
}
.smb-search-width-337px {
  width: 337px;
}
.smb-search-width-338px {
  width: 338px;
}
.smb-search-width-339px {
  width: 339px;
}
.smb-search-width-340px {
  width: 340px;
}
.smb-search-width-341px {
  width: 341px;
}
.smb-search-width-342px {
  width: 342px;
}
.smb-search-width-343px {
  width: 343px;
}
.smb-search-width-344px {
  width: 344px;
}
.smb-search-width-345px {
  width: 345px;
}
.smb-search-width-346px {
  width: 346px;
}
.smb-search-width-347px {
  width: 347px;
}
.smb-search-width-348px {
  width: 348px;
}
.smb-search-width-349px {
  width: 349px;
}
.smb-search-width-350px {
  width: 350px;
}
.smb-search-width-351px {
  width: 351px;
}
.smb-search-width-352px {
  width: 352px;
}
.smb-search-width-353px {
  width: 353px;
}
.smb-search-width-354px {
  width: 354px;
}
.smb-search-width-355px {
  width: 355px;
}
.smb-search-width-356px {
  width: 356px;
}
.smb-search-width-357px {
  width: 357px;
}
.smb-search-width-358px {
  width: 358px;
}
.smb-search-width-359px {
  width: 359px;
}
.smb-search-width-360px {
  width: 360px;
}
.smb-search-width-361px {
  width: 361px;
}
.smb-search-width-362px {
  width: 362px;
}
.smb-search-width-363px {
  width: 363px;
}
.smb-search-width-364px {
  width: 364px;
}
.smb-search-width-365px {
  width: 365px;
}
.smb-search-width-366px {
  width: 366px;
}
.smb-search-width-367px {
  width: 367px;
}
.smb-search-width-368px {
  width: 368px;
}
.smb-search-width-369px {
  width: 369px;
}
.smb-search-width-370px {
  width: 370px;
}
.smb-search-width-371px {
  width: 371px;
}
.smb-search-width-372px {
  width: 372px;
}
.smb-search-width-373px {
  width: 373px;
}
.smb-search-width-374px {
  width: 374px;
}
.smb-search-width-375px {
  width: 375px;
}
.smb-search-width-376px {
  width: 376px;
}
.smb-search-width-377px {
  width: 377px;
}
.smb-search-width-378px {
  width: 378px;
}
.smb-search-width-379px {
  width: 379px;
}
.smb-search-width-380px {
  width: 380px;
}
.smb-search-width-381px {
  width: 381px;
}
.smb-search-width-382px {
  width: 382px;
}
.smb-search-width-383px {
  width: 383px;
}
.smb-search-width-384px {
  width: 384px;
}
.smb-search-width-385px {
  width: 385px;
}
.smb-search-width-386px {
  width: 386px;
}
.smb-search-width-387px {
  width: 387px;
}
.smb-search-width-388px {
  width: 388px;
}
.smb-search-width-389px {
  width: 389px;
}
.smb-search-width-390px {
  width: 390px;
}
.smb-search-width-391px {
  width: 391px;
}
.smb-search-width-392px {
  width: 392px;
}
.smb-search-width-393px {
  width: 393px;
}
.smb-search-width-394px {
  width: 394px;
}
.smb-search-width-395px {
  width: 395px;
}
.smb-search-width-396px {
  width: 396px;
}
.smb-search-width-397px {
  width: 397px;
}
.smb-search-width-398px {
  width: 398px;
}
.smb-search-width-399px {
  width: 399px;
}
.smb-search-width-400px {
  width: 400px;
}
.smb-search-append {
  background-color: white;
  padding: 9px 11px;
  position: absolute;
  top: 1px;
  right: 1px;
  color: #4d4d4d;
  background-color: transparent;
  cursor: pointer;
  height: 100%;
}
.smb-search-append:hover {
  color: #fff;
}

.smb-search-range {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 210px;
  min-height: 28px;
  font-size: 14px;
}
.smb-search-range-title {
  margin: 0;
  padding: 4px 8px 4px 0;
  width: 64px;
  height: 100%;
}
.smb-search-range-group {
  display: flex;
  align-items: center;
  width: 145px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.smb-search-range-group-input {
  display: inline-block;
  width: 44px;
  padding: 4px 8px;
  color: #fff;
  border: none;
  border-radius: 4px;
}
.smb-search-range-group-input:focus, .smb-search-range-group-input:hover, .smb-search-range-group-input:active {
  border: none;
}
.smb-search-range-group-input::-webkit-input-placeholder {
  color: #666;
}
.smb-search-range-group-input::-webkit-outer-spin-button, .smb-search-range-group-input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}
.smb-search-range-group-date {
  text-align: center;
  vertical-align: middle;
  padding: 4px 8px;
}
.smb-search-range-group-append {
  color: #4d4d4d;
  text-align: center;
  vertical-align: middle;
}
.smb-search-range-group-append.append-conjunction {
  width: 25px;
}
.smb-search-range-group-append.append-icon {
  padding: 6px 8px;
}
.smb-search-range-group-append.append-icon:hover {
  color: #fff;
}
.smb-search-range-group button {
  background-color: white;
}

.smb-message-noty-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
}
.smb-message-noty-container .smb-message-noty {
  display: none;
}
.smb-message-noty-container .noty_theme__smb-message-noty,
.smb-message-noty-container .noty_theme__smb-message-noty-custom-style {
  display: table;
  margin: 12px auto;
  color: #fff;
  padding: 12px 50px;
  font-size: 12px;
  background: #ffffff;
  box-shadow: 0px 5px 20px rgba(122, 133, 153, 0.2);
  border-radius: 4px;
  line-height: 16px;
}
.smb-message-noty-container .noty_theme__smb-message-noty .noty_body,
.smb-message-noty-container .noty_theme__smb-message-noty-custom-style .noty_body {
  display: flex;
  align-items: center;
}
.smb-message-noty-container .noty_theme__smb-message-noty .smb-icon.smb-icon-correct,
.smb-message-noty-container .noty_theme__smb-message-noty-custom-style .smb-icon.smb-icon-correct {
  color: #47b28f;
}
.smb-message-noty-container .noty_theme__smb-message-noty .smb-icon.smb-icon-error,
.smb-message-noty-container .noty_theme__smb-message-noty-custom-style .smb-icon.smb-icon-error {
  color: #d9574c;
}
.smb-message-noty-container .noty_theme__smb-message-noty .smb-icon.smb-icon-warning,
.smb-message-noty-container .noty_theme__smb-message-noty-custom-style .smb-icon.smb-icon-warning {
  color: #e57239;
}
.smb-message-noty-container .noty_theme__smb-message-noty .smb-noty-content:not(:first-child),
.smb-message-noty-container .noty_theme__smb-message-noty-custom-style .smb-noty-content:not(:first-child) {
  margin-left: 8px;
}
.smb-message-noty-container .noty_theme__smb-message-noty .smb-noty-content:not(:last-child),
.smb-message-noty-container .noty_theme__smb-message-noty-custom-style .smb-noty-content:not(:last-child) {
  margin-right: 8px;
}
.smb-message-noty-container .noty_theme__smb-message-noty-custom-style {
  padding: 12px;
  padding-right: 40px;
  min-width: 400px;
  max-width: 100%;
}
@media (max-width: 575.98px) {
  .smb-message-noty-container .noty_theme__smb-message-noty-custom-style {
    min-width: 300px;
  }
}
.smb-message-noty-container .noty_close_button {
  font-weight: 400;
  background-color: transparent;
  right: 12px;
  top: calc(50% - 10px);
}
.smb-message-noty-container .noty_close_button .smb-icon-close {
  font-size: 20px;
  color: #666;
}
.smb-message-noty-container .noty_close_button:hover {
  background-color: transparent;
}
.smb-message-noty-container .noty_close_button:hover .smb-icon-close {
  color: #fff;
}
.smb-message-noty-container .noty_effects_open {
  opacity: 0;
  transform: translateY(-50%);
  animation: smb_noty_anim_in 0.2s linear;
  -webkit-animation: smb_noty_anim_in 0.2s linear;
}
.smb-message-noty-container .noty_effects_close {
  animation: smb_noty_anim_out 0.2s linear;
  -webkit-animation: smb_noty_anim_out 0.2s linear;
}
@keyframes smb_noty_anim_in {
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes smb_noty_anim_out {
  100% {
    transform: translateY(-50%);
    opacity: 0;
  }
}

.smb-nav-tab {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow-x: scroll;
  display: flex;
  flex-wrap: nowrap;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.smb-nav-tab::-webkit-scrollbar {
  display: none; /* Chrome Safari */
}
.smb-nav-tab.without-border-bottom {
  border-bottom: none;
}
.smb-nav-tab .smb-nav-link {
  padding: 8px;
  font-size: 14px;
  color: #ccc;
  border: none;
  white-space: nowrap;
}
.smb-nav-tab .smb-nav-link.active, .smb-nav-tab .smb-nav-link:hover {
  border: none;
}
.smb-nav-tab .smb-nav-link.active {
  position: relative;
  color: #fff;
  font-weight: 600;
}
.smb-nav-tab .smb-nav-link.active::before {
  position: absolute;
  left: calc(50% - 12px);
  bottom: 0;
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 1.5px;
  background-color: #cc3f33;
}
.smb-nav-tab .smb-nav-link.disabled {
  color: #4d4d4d;
  cursor: not-allowed;
  pointer-events: unset;
}
.smb-nav-tab .smb-nav-link:first-child {
  padding-left: 0;
}
.smb-nav-tab .smb-nav-link:first-child:not(:last-child)::before {
  left: calc(50% - 16px);
}
.smb-nav-tab .smb-nav-link:last-child {
  padding-right: 0;
}
.smb-nav-tab .smb-nav-link:last-child:not(:first-child)::before {
  left: calc(50% - 8px);
}

.modal-backdrop.show {
  background-color: #2e3033;
  opacity: 0.7;
}

.modal.smb-modal-l-type {
  top: 40px;
}
.modal.smb-modal-l-type .modal-top-backdrop {
  position: sticky;
  top: 0;
  z-index: 1050;
  background-color: #5f5f5f;
  height: 3px;
  width: 100vw;
}
.modal.smb-modal-l-type .modal-dialog {
  max-width: 720px;
  margin: 80px auto;
}
.modal.smb-modal .modal-dialog-scrollable {
  margin: 80px auto;
}
.modal.smb-modal .modal-dialog-scrollable.modal-dialog-centered {
  min-height: calc(100% - 320px);
  max-height: calc(100% - 160px);
}
.modal.smb-modal .modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 160px);
}
.modal.smb-modal .modal-dialog {
  max-width: 720px;
}
.modal.smb-modal .modal-dialog.smb-modal-dialog-md {
  max-width: 640px;
}
.modal.smb-modal .modal-dialog.smb-modal-dialog-sm {
  max-width: 420px;
}
@media (max-width: 767.98px) {
  .modal.smb-modal .modal-dialog.smb-modal-dialog-sm {
    max-width: 315px;
    margin: 0 auto;
  }
}
.modal.smb-modal .modal-dialog .modal-content {
  border-radius: 4px;
}
.modal.smb-modal .modal-btn-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.modal.smb-modal .modal-dialog .modal-content .modal-header {
  display: block;
  padding: 12px 20px;
  padding-right: 60px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.modal.smb-modal .modal-dialog .modal-content .modal-header.smb-modal-header-title-tab {
  padding-bottom: 0;
}
.modal.smb-modal .modal-dialog .modal-content .modal-header.smb-modal-header-title-tab .modal-header-title {
  margin-bottom: 12px;
}
.modal.smb-modal .modal-dialog .modal-content .modal-header-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: normal;
}
.modal.smb-modal .modal-dialog .modal-content .modal-header-sticky {
  position: sticky;
  top: 0;
  z-index: 1050;
  background-color: inherit;
}
.modal.smb-modal .modal-dialog .modal-content .modal-header .smb-icon-close {
  position: absolute;
  right: 14px;
  top: 6px;
  font-size: 20px;
  padding: 5px;
  color: #666;
  line-height: 1;
  cursor: pointer;
}
.modal.smb-modal .modal-dialog .modal-content .modal-header .smb-icon-close:hover {
  color: #fff;
}
.modal.smb-modal .modal-dialog .modal-content .modal-body {
  padding: 20px;
}
.modal.smb-modal .modal-dialog .modal-content .modal-body .warning-title {
  font-weight: 600;
}
.modal.smb-modal .modal-dialog .modal-content .modal-body .warning-title > i {
  color: #e57239;
  font-weight: 400;
  margin-right: 8px;
}
.modal.smb-modal .modal-dialog .modal-content .modal-body .warning-subtitle {
  margin-top: 8px;
  color: #d9574c;
  padding-left: 24px;
  font-size: 14px;
}
.modal.smb-modal .modal-dialog .modal-content .modal-footer {
  padding: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.modal.smb-notice-modal .modal-dialog {
  max-width: 420px;
}
.modal.smb-notice-modal .modal-dialog .modal-content {
  width: 420px;
  background: #ffffff;
  border-radius: 8px;
}
.modal.smb-notice-modal .modal-dialog .modal-content .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid #f0f1f2;
}
.modal.smb-notice-modal .modal-dialog .modal-content .modal-header .modal-header-title {
  font-weight: 600;
  font-size: 16px;
  color: #333333;
}
.modal.smb-notice-modal .modal-dialog .modal-content .modal-header i.smb-icon.smb-icon-close {
  font-size: 20px;
  color: #999999;
  cursor: pointer;
}
.modal.smb-notice-modal .modal-dialog .modal-content .modal-body {
  padding: 20px;
}
.modal.smb-notice-modal .modal-dialog .modal-content .modal-body .notice-container {
  position: relative;
  word-break: break-all;
}
.modal.smb-notice-modal .modal-dialog .modal-content .modal-body .notice-container i.notice-icon.smb-icon {
  position: absolute;
  top: 1px;
  font-size: 20px;
}
.modal.smb-notice-modal .modal-dialog .modal-content .modal-body .notice-container i.notice-icon.smb-icon.smb-icon-warning {
  color: #fa8e58;
}
.modal.smb-notice-modal .modal-dialog .modal-content .modal-body .notice-container i.notice-icon.smb-icon.smb-icon-correct {
  color: #3abf93;
}
.modal.smb-notice-modal .modal-dialog .modal-content .modal-body .notice-container .notice-title {
  padding: 0 0 0 32px;
  font-weight: 600;
  font-size: 14px;
  color: #333333;
}
.modal.smb-notice-modal .modal-dialog .modal-content .modal-body .notice-container .notice-subtitle {
  margin: 8px 0 0 0;
  padding: 0 0 0 32px;
  font-weight: 400;
  font-size: 12px;
  color: #999999;
}
.modal.smb-notice-modal .modal-dialog .modal-content .modal-body .notice-container .notice-extra {
  margin: 8px 0 0 0;
  padding: 0 0 0 32px;
  font-weight: 400;
  font-size: 12px;
  color: #fa8e58;
}
.modal.smb-notice-modal .modal-dialog .modal-content .modal-footer {
  padding: 12px 20px;
}
.modal.smb-notice-modal .modal-dialog .modal-content .modal-footer {
  display: flex;
  align-items: center;
  justify-content: end;
}

.smb-confirm.el-message-box {
  border-radius: 0.5rem;
}
.smb-confirm.el-message-box .el-message-box__header {
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.smb-confirm.el-message-box .el-message-box__header .el-message-box__headerbtn {
  position: relative;
  top: unset;
  right: unset;
}
.smb-confirm.el-message-box .el-message-box__container {
  align-items: center;
}
.smb-confirm.el-message-box .el-button {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid #f0f1f2;
  background-color: #fff;
  color: #333333;
  font-size: 0.875rem;
  font-weight: 400;
}
.smb-confirm.el-message-box .el-button.el-button--primary {
  border-color: #408cff;
  background-color: #408cff;
  color: #ffffff;
}

.smb-notice {
  padding: 8px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.smb-notice .smb-icon.smb-icon-arrow-right {
  display: none;
}
.smb-notice .smb-notice-content {
  font-size: 12px;
  margin-left: 8px;
  margin-right: 8px;
}
.smb-notice.smb-notice-green {
  color: #398e72;
  background-color: rgba(71, 178, 143, 0.1);
  border: 1px solid rgba(71, 178, 143, 0.2);
}
.smb-notice.smb-notice-green .smb-icon-warning-circle {
  color: #47b28f;
}
.smb-notice.smb-notice-green:hover {
  text-decoration: none;
  color: #398e72;
}
.smb-notice.smb-notice-blue {
  color: #3a7ee6;
  background-color: rgba(64, 140, 255, 0.1);
  border: 1px solid rgba(64, 140, 255, 0.2);
}
.smb-notice.smb-notice-blue .smb-icon-warning-circle {
  color: #408cff;
}
.smb-notice.smb-notice-blue:hover {
  text-decoration: none;
  color: #3a7ee6;
}
.smb-notice.smb-notice-red {
  color: #b8392e;
  background-color: rgba(204, 63, 51, 0.1);
  border: 1px solid rgba(204, 63, 51, 0.2);
}
.smb-notice.smb-notice-red .smb-icon-warning-circle {
  color: #d9574c;
}
.smb-notice.smb-notice-red:hover {
  text-decoration: none;
  color: #b8392e;
}
.smb-notice.smb-notice-orange {
  color: #e57239;
  background-color: rgba(229, 114, 57, 0.1);
  border: 1px solid rgba(229, 114, 57, 0.2);
}
.smb-notice.smb-notice-orange .smb-icon-warning-circle {
  color: #e57239;
}
.smb-notice.smb-notice-orange:hover {
  text-decoration: none;
  color: #e57239;
}
.smb-notice.smb-notice-recommend {
  color: #666666;
  background-color: rgba(64, 140, 255, 0.1);
  border: 1px solid rgba(64, 140, 255, 0.2);
  padding: 0;
  padding-right: 0.75rem;
}
.smb-notice.smb-notice-recommend .smb-icon.smb-icon-arrow-right {
  display: inline-block;
  font-size: 0.75rem;
}
.smb-notice.smb-notice-recommend .smb-notice-content,
.smb-notice.smb-notice-recommend .smb-link,
.smb-notice.smb-notice-recommend .paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .el-button,
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .smb-notice.smb-notice-recommend .el-button {
  font-size: 0.875rem;
}
.smb-notice.smb-notice-recommend .smb-notice-content {
  margin-left: 0;
  margin-right: 0.25rem;
}
.smb-notice.smb-notice-recommend .smb-link, .smb-notice.smb-notice-recommend .paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .el-button, .paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .smb-notice.smb-notice-recommend .el-button {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .smb-notice {
    position: relative;
  }
  .smb-notice .smb-btn, .smb-notice .paas-pads-show-page .d42-modal-footer .d42-btn, .paas-pads-show-page .d42-modal-footer .smb-notice .d42-btn {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
  .smb-notice .smb-notice-content {
    flex: 1;
  }
  .smb-notice .smb-icon.smb-icon-arrow-right {
    display: block;
  }
}

.smb-item-notice.written-exam-item-notice {
  color: #999;
  line-height: normal;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
}
.smb-item-notice.written-exam-item-notice a {
  color: #999;
  text-decoration: none;
}
.smb-item-notice.written-exam-item-notice a::hover {
  text-decoration: none;
}
.smb-item-notice.written-exam-item-notice .smb-icon-circle-full::before {
  position: relative;
  top: 2px;
}
.smb-item-notice.written-exam-item-notice .smb-icon-arrow-right::before {
  font-size: 12px;
}

.smb-badge {
  background-color: #cc3f33;
  color: white;
  border-radius: 8px;
  font-size: 12px;
  line-height: 14px;
}
.smb-badge-number {
  padding-left: 4px;
  padding-right: 4px;
}

.smb-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  overflow: hidden;
  display: none;
}
.smb-drawer-open {
  overflow: hidden;
}
.smb-drawer-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 48, 51, 0.7);
  z-index: 999;
}
.smb-drawer.open .open-top {
  top: 0 !important;
}
.smb-drawer.open .open-bottom {
  bottom: 0 !important;
}
.smb-drawer.open .open-left {
  left: 0 !important;
}
.smb-drawer.open .open-right {
  right: 0 !important;
}
.smb-drawer-container {
  position: fixed;
  z-index: 1000;
  background-color: white;
}
.smb-drawer-container.open-top {
  width: 100%;
  top: -100%;
  transition: top 0.3s ease-in-out;
}
.smb-drawer-container.open-bottom {
  width: 100%;
  bottom: -100%;
  transition: bottom 0.3s ease-in-out;
}
.smb-drawer-container.open-left {
  height: 100%;
  left: -100%;
  transition: left 0.3s ease-in-out;
}
.smb-drawer-container.open-right {
  height: 100%;
  right: -100%;
  transition: right 0.3s ease-in-out;
}

.col-width-1px {
  width: 1px;
}

.col-width-2px {
  width: 2px;
}

.col-width-3px {
  width: 3px;
}

.col-width-4px {
  width: 4px;
}

.col-width-5px {
  width: 5px;
}

.col-width-6px {
  width: 6px;
}

.col-width-7px {
  width: 7px;
}

.col-width-8px {
  width: 8px;
}

.col-width-9px {
  width: 9px;
}

.col-width-10px {
  width: 10px;
}

.col-width-11px {
  width: 11px;
}

.col-width-12px {
  width: 12px;
}

.col-width-13px {
  width: 13px;
}

.col-width-14px {
  width: 14px;
}

.col-width-15px {
  width: 15px;
}

.col-width-16px {
  width: 16px;
}

.col-width-17px {
  width: 17px;
}

.col-width-18px {
  width: 18px;
}

.col-width-19px {
  width: 19px;
}

.col-width-20px {
  width: 20px;
}

.col-width-21px {
  width: 21px;
}

.col-width-22px {
  width: 22px;
}

.col-width-23px {
  width: 23px;
}

.col-width-24px {
  width: 24px;
}

.col-width-25px {
  width: 25px;
}

.col-width-26px {
  width: 26px;
}

.col-width-27px {
  width: 27px;
}

.col-width-28px {
  width: 28px;
}

.col-width-29px {
  width: 29px;
}

.col-width-30px {
  width: 30px;
}

.col-width-31px {
  width: 31px;
}

.col-width-32px {
  width: 32px;
}

.col-width-33px {
  width: 33px;
}

.col-width-34px {
  width: 34px;
}

.col-width-35px {
  width: 35px;
}

.col-width-36px {
  width: 36px;
}

.col-width-37px {
  width: 37px;
}

.col-width-38px {
  width: 38px;
}

.col-width-39px {
  width: 39px;
}

.col-width-40px {
  width: 40px;
}

.col-width-41px {
  width: 41px;
}

.col-width-42px {
  width: 42px;
}

.col-width-43px {
  width: 43px;
}

.col-width-44px {
  width: 44px;
}

.col-width-45px {
  width: 45px;
}

.col-width-46px {
  width: 46px;
}

.col-width-47px {
  width: 47px;
}

.col-width-48px {
  width: 48px;
}

.col-width-49px {
  width: 49px;
}

.col-width-50px {
  width: 50px;
}

.col-width-51px {
  width: 51px;
}

.col-width-52px {
  width: 52px;
}

.col-width-53px {
  width: 53px;
}

.col-width-54px {
  width: 54px;
}

.col-width-55px {
  width: 55px;
}

.col-width-56px {
  width: 56px;
}

.col-width-57px {
  width: 57px;
}

.col-width-58px {
  width: 58px;
}

.col-width-59px {
  width: 59px;
}

.col-width-60px {
  width: 60px;
}

.col-width-61px {
  width: 61px;
}

.col-width-62px {
  width: 62px;
}

.col-width-63px {
  width: 63px;
}

.col-width-64px {
  width: 64px;
}

.col-width-65px {
  width: 65px;
}

.col-width-66px {
  width: 66px;
}

.col-width-67px {
  width: 67px;
}

.col-width-68px {
  width: 68px;
}

.col-width-69px {
  width: 69px;
}

.col-width-70px {
  width: 70px;
}

.col-width-71px {
  width: 71px;
}

.col-width-72px {
  width: 72px;
}

.col-width-73px {
  width: 73px;
}

.col-width-74px {
  width: 74px;
}

.col-width-75px {
  width: 75px;
}

.col-width-76px {
  width: 76px;
}

.col-width-77px {
  width: 77px;
}

.col-width-78px {
  width: 78px;
}

.col-width-79px {
  width: 79px;
}

.col-width-80px {
  width: 80px;
}

.col-width-81px {
  width: 81px;
}

.col-width-82px {
  width: 82px;
}

.col-width-83px {
  width: 83px;
}

.col-width-84px {
  width: 84px;
}

.col-width-85px {
  width: 85px;
}

.col-width-86px {
  width: 86px;
}

.col-width-87px {
  width: 87px;
}

.col-width-88px {
  width: 88px;
}

.col-width-89px {
  width: 89px;
}

.col-width-90px {
  width: 90px;
}

.col-width-91px {
  width: 91px;
}

.col-width-92px {
  width: 92px;
}

.col-width-93px {
  width: 93px;
}

.col-width-94px {
  width: 94px;
}

.col-width-95px {
  width: 95px;
}

.col-width-96px {
  width: 96px;
}

.col-width-97px {
  width: 97px;
}

.col-width-98px {
  width: 98px;
}

.col-width-99px {
  width: 99px;
}

.col-width-100px {
  width: 100px;
}

.col-width-101px {
  width: 101px;
}

.col-width-102px {
  width: 102px;
}

.col-width-103px {
  width: 103px;
}

.col-width-104px {
  width: 104px;
}

.col-width-105px {
  width: 105px;
}

.col-width-106px {
  width: 106px;
}

.col-width-107px {
  width: 107px;
}

.col-width-108px {
  width: 108px;
}

.col-width-109px {
  width: 109px;
}

.col-width-110px {
  width: 110px;
}

.col-width-111px {
  width: 111px;
}

.col-width-112px {
  width: 112px;
}

.col-width-113px {
  width: 113px;
}

.col-width-114px {
  width: 114px;
}

.col-width-115px {
  width: 115px;
}

.col-width-116px {
  width: 116px;
}

.col-width-117px {
  width: 117px;
}

.col-width-118px {
  width: 118px;
}

.col-width-119px {
  width: 119px;
}

.col-width-120px {
  width: 120px;
}

.col-width-121px {
  width: 121px;
}

.col-width-122px {
  width: 122px;
}

.col-width-123px {
  width: 123px;
}

.col-width-124px {
  width: 124px;
}

.col-width-125px {
  width: 125px;
}

.col-width-126px {
  width: 126px;
}

.col-width-127px {
  width: 127px;
}

.col-width-128px {
  width: 128px;
}

.col-width-129px {
  width: 129px;
}

.col-width-130px {
  width: 130px;
}

.col-width-131px {
  width: 131px;
}

.col-width-132px {
  width: 132px;
}

.col-width-133px {
  width: 133px;
}

.col-width-134px {
  width: 134px;
}

.col-width-135px {
  width: 135px;
}

.col-width-136px {
  width: 136px;
}

.col-width-137px {
  width: 137px;
}

.col-width-138px {
  width: 138px;
}

.col-width-139px {
  width: 139px;
}

.col-width-140px {
  width: 140px;
}

.col-width-141px {
  width: 141px;
}

.col-width-142px {
  width: 142px;
}

.col-width-143px {
  width: 143px;
}

.col-width-144px {
  width: 144px;
}

.col-width-145px {
  width: 145px;
}

.col-width-146px {
  width: 146px;
}

.col-width-147px {
  width: 147px;
}

.col-width-148px {
  width: 148px;
}

.col-width-149px {
  width: 149px;
}

.col-width-150px {
  width: 150px;
}

.col-width-151px {
  width: 151px;
}

.col-width-152px {
  width: 152px;
}

.col-width-153px {
  width: 153px;
}

.col-width-154px {
  width: 154px;
}

.col-width-155px {
  width: 155px;
}

.col-width-156px {
  width: 156px;
}

.col-width-157px {
  width: 157px;
}

.col-width-158px {
  width: 158px;
}

.col-width-159px {
  width: 159px;
}

.col-width-160px {
  width: 160px;
}

.col-width-161px {
  width: 161px;
}

.col-width-162px {
  width: 162px;
}

.col-width-163px {
  width: 163px;
}

.col-width-164px {
  width: 164px;
}

.col-width-165px {
  width: 165px;
}

.col-width-166px {
  width: 166px;
}

.col-width-167px {
  width: 167px;
}

.col-width-168px {
  width: 168px;
}

.col-width-169px {
  width: 169px;
}

.col-width-170px {
  width: 170px;
}

.col-width-171px {
  width: 171px;
}

.col-width-172px {
  width: 172px;
}

.col-width-173px {
  width: 173px;
}

.col-width-174px {
  width: 174px;
}

.col-width-175px {
  width: 175px;
}

.col-width-176px {
  width: 176px;
}

.col-width-177px {
  width: 177px;
}

.col-width-178px {
  width: 178px;
}

.col-width-179px {
  width: 179px;
}

.col-width-180px {
  width: 180px;
}

.col-width-181px {
  width: 181px;
}

.col-width-182px {
  width: 182px;
}

.col-width-183px {
  width: 183px;
}

.col-width-184px {
  width: 184px;
}

.col-width-185px {
  width: 185px;
}

.col-width-186px {
  width: 186px;
}

.col-width-187px {
  width: 187px;
}

.col-width-188px {
  width: 188px;
}

.col-width-189px {
  width: 189px;
}

.col-width-190px {
  width: 190px;
}

.col-width-191px {
  width: 191px;
}

.col-width-192px {
  width: 192px;
}

.col-width-193px {
  width: 193px;
}

.col-width-194px {
  width: 194px;
}

.col-width-195px {
  width: 195px;
}

.col-width-196px {
  width: 196px;
}

.col-width-197px {
  width: 197px;
}

.col-width-198px {
  width: 198px;
}

.col-width-199px {
  width: 199px;
}

.col-width-200px {
  width: 200px;
}

.col-width-201px {
  width: 201px;
}

.col-width-202px {
  width: 202px;
}

.col-width-203px {
  width: 203px;
}

.col-width-204px {
  width: 204px;
}

.col-width-205px {
  width: 205px;
}

.col-width-206px {
  width: 206px;
}

.col-width-207px {
  width: 207px;
}

.col-width-208px {
  width: 208px;
}

.col-width-209px {
  width: 209px;
}

.col-width-210px {
  width: 210px;
}

.col-width-211px {
  width: 211px;
}

.col-width-212px {
  width: 212px;
}

.col-width-213px {
  width: 213px;
}

.col-width-214px {
  width: 214px;
}

.col-width-215px {
  width: 215px;
}

.col-width-216px {
  width: 216px;
}

.col-width-217px {
  width: 217px;
}

.col-width-218px {
  width: 218px;
}

.col-width-219px {
  width: 219px;
}

.col-width-220px {
  width: 220px;
}

.col-width-221px {
  width: 221px;
}

.col-width-222px {
  width: 222px;
}

.col-width-223px {
  width: 223px;
}

.col-width-224px {
  width: 224px;
}

.col-width-225px {
  width: 225px;
}

.col-width-226px {
  width: 226px;
}

.col-width-227px {
  width: 227px;
}

.col-width-228px {
  width: 228px;
}

.col-width-229px {
  width: 229px;
}

.col-width-230px {
  width: 230px;
}

.col-width-231px {
  width: 231px;
}

.col-width-232px {
  width: 232px;
}

.col-width-233px {
  width: 233px;
}

.col-width-234px {
  width: 234px;
}

.col-width-235px {
  width: 235px;
}

.col-width-236px {
  width: 236px;
}

.col-width-237px {
  width: 237px;
}

.col-width-238px {
  width: 238px;
}

.col-width-239px {
  width: 239px;
}

.col-width-240px {
  width: 240px;
}

.col-width-241px {
  width: 241px;
}

.col-width-242px {
  width: 242px;
}

.col-width-243px {
  width: 243px;
}

.col-width-244px {
  width: 244px;
}

.col-width-245px {
  width: 245px;
}

.col-width-246px {
  width: 246px;
}

.col-width-247px {
  width: 247px;
}

.col-width-248px {
  width: 248px;
}

.col-width-249px {
  width: 249px;
}

.col-width-250px {
  width: 250px;
}

.col-width-251px {
  width: 251px;
}

.col-width-252px {
  width: 252px;
}

.col-width-253px {
  width: 253px;
}

.col-width-254px {
  width: 254px;
}

.col-width-255px {
  width: 255px;
}

.col-width-256px {
  width: 256px;
}

.col-width-257px {
  width: 257px;
}

.col-width-258px {
  width: 258px;
}

.col-width-259px {
  width: 259px;
}

.col-width-260px {
  width: 260px;
}

.col-width-261px {
  width: 261px;
}

.col-width-262px {
  width: 262px;
}

.col-width-263px {
  width: 263px;
}

.col-width-264px {
  width: 264px;
}

.col-width-265px {
  width: 265px;
}

.col-width-266px {
  width: 266px;
}

.col-width-267px {
  width: 267px;
}

.col-width-268px {
  width: 268px;
}

.col-width-269px {
  width: 269px;
}

.col-width-270px {
  width: 270px;
}

.col-width-271px {
  width: 271px;
}

.col-width-272px {
  width: 272px;
}

.col-width-273px {
  width: 273px;
}

.col-width-274px {
  width: 274px;
}

.col-width-275px {
  width: 275px;
}

.col-width-276px {
  width: 276px;
}

.col-width-277px {
  width: 277px;
}

.col-width-278px {
  width: 278px;
}

.col-width-279px {
  width: 279px;
}

.col-width-280px {
  width: 280px;
}

.col-width-281px {
  width: 281px;
}

.col-width-282px {
  width: 282px;
}

.col-width-283px {
  width: 283px;
}

.col-width-284px {
  width: 284px;
}

.col-width-285px {
  width: 285px;
}

.col-width-286px {
  width: 286px;
}

.col-width-287px {
  width: 287px;
}

.col-width-288px {
  width: 288px;
}

.col-width-289px {
  width: 289px;
}

.col-width-290px {
  width: 290px;
}

.col-width-291px {
  width: 291px;
}

.col-width-292px {
  width: 292px;
}

.col-width-293px {
  width: 293px;
}

.col-width-294px {
  width: 294px;
}

.col-width-295px {
  width: 295px;
}

.col-width-296px {
  width: 296px;
}

.col-width-297px {
  width: 297px;
}

.col-width-298px {
  width: 298px;
}

.col-width-299px {
  width: 299px;
}

.col-width-300px {
  width: 300px;
}

.col-width-301px {
  width: 301px;
}

.col-width-302px {
  width: 302px;
}

.col-width-303px {
  width: 303px;
}

.col-width-304px {
  width: 304px;
}

.col-width-305px {
  width: 305px;
}

.col-width-306px {
  width: 306px;
}

.col-width-307px {
  width: 307px;
}

.col-width-308px {
  width: 308px;
}

.col-width-309px {
  width: 309px;
}

.col-width-310px {
  width: 310px;
}

.col-width-311px {
  width: 311px;
}

.col-width-312px {
  width: 312px;
}

.col-width-313px {
  width: 313px;
}

.col-width-314px {
  width: 314px;
}

.col-width-315px {
  width: 315px;
}

.col-width-316px {
  width: 316px;
}

.col-width-317px {
  width: 317px;
}

.col-width-318px {
  width: 318px;
}

.col-width-319px {
  width: 319px;
}

.col-width-320px {
  width: 320px;
}

.col-width-321px {
  width: 321px;
}

.col-width-322px {
  width: 322px;
}

.col-width-323px {
  width: 323px;
}

.col-width-324px {
  width: 324px;
}

.col-width-325px {
  width: 325px;
}

.col-width-326px {
  width: 326px;
}

.col-width-327px {
  width: 327px;
}

.col-width-328px {
  width: 328px;
}

.col-width-329px {
  width: 329px;
}

.col-width-330px {
  width: 330px;
}

.col-width-331px {
  width: 331px;
}

.col-width-332px {
  width: 332px;
}

.col-width-333px {
  width: 333px;
}

.col-width-334px {
  width: 334px;
}

.col-width-335px {
  width: 335px;
}

.col-width-336px {
  width: 336px;
}

.col-width-337px {
  width: 337px;
}

.col-width-338px {
  width: 338px;
}

.col-width-339px {
  width: 339px;
}

.col-width-340px {
  width: 340px;
}

.col-width-341px {
  width: 341px;
}

.col-width-342px {
  width: 342px;
}

.col-width-343px {
  width: 343px;
}

.col-width-344px {
  width: 344px;
}

.col-width-345px {
  width: 345px;
}

.col-width-346px {
  width: 346px;
}

.col-width-347px {
  width: 347px;
}

.col-width-348px {
  width: 348px;
}

.col-width-349px {
  width: 349px;
}

.col-width-350px {
  width: 350px;
}

.col-width-351px {
  width: 351px;
}

.col-width-352px {
  width: 352px;
}

.col-width-353px {
  width: 353px;
}

.col-width-354px {
  width: 354px;
}

.col-width-355px {
  width: 355px;
}

.col-width-356px {
  width: 356px;
}

.col-width-357px {
  width: 357px;
}

.col-width-358px {
  width: 358px;
}

.col-width-359px {
  width: 359px;
}

.col-width-360px {
  width: 360px;
}

.col-width-361px {
  width: 361px;
}

.col-width-362px {
  width: 362px;
}

.col-width-363px {
  width: 363px;
}

.col-width-364px {
  width: 364px;
}

.col-width-365px {
  width: 365px;
}

.col-width-366px {
  width: 366px;
}

.col-width-367px {
  width: 367px;
}

.col-width-368px {
  width: 368px;
}

.col-width-369px {
  width: 369px;
}

.col-width-370px {
  width: 370px;
}

.col-width-371px {
  width: 371px;
}

.col-width-372px {
  width: 372px;
}

.col-width-373px {
  width: 373px;
}

.col-width-374px {
  width: 374px;
}

.col-width-375px {
  width: 375px;
}

.col-width-376px {
  width: 376px;
}

.col-width-377px {
  width: 377px;
}

.col-width-378px {
  width: 378px;
}

.col-width-379px {
  width: 379px;
}

.col-width-380px {
  width: 380px;
}

.col-width-381px {
  width: 381px;
}

.col-width-382px {
  width: 382px;
}

.col-width-383px {
  width: 383px;
}

.col-width-384px {
  width: 384px;
}

.col-width-385px {
  width: 385px;
}

.col-width-386px {
  width: 386px;
}

.col-width-387px {
  width: 387px;
}

.col-width-388px {
  width: 388px;
}

.col-width-389px {
  width: 389px;
}

.col-width-390px {
  width: 390px;
}

.col-width-391px {
  width: 391px;
}

.col-width-392px {
  width: 392px;
}

.col-width-393px {
  width: 393px;
}

.col-width-394px {
  width: 394px;
}

.col-width-395px {
  width: 395px;
}

.col-width-396px {
  width: 396px;
}

.col-width-397px {
  width: 397px;
}

.col-width-398px {
  width: 398px;
}

.col-width-399px {
  width: 399px;
}

.col-width-400px {
  width: 400px;
}

.smb-table {
  width: 100%;
  background-color: white;
}
.smb-table-content {
  display: flex;
  flex-direction: column;
  position: relative;
}
.smb-table-content .smb-table-loading {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  width: 112px;
  height: 112px;
  background: #fff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.smb-table-content .smb-table-loading.hidden {
  display: none;
}
.smb-table-content-column-wrapper {
  display: flex;
  flex-grow: 1;
  width: 0;
}
.smb-table-content-left-column-wrapper {
  display: flex;
  position: sticky;
  left: -1px;
  z-index: 2;
}
.smb-table-content .sticky-column {
  position: sticky;
  left: -1px;
  z-index: 2;
}
.smb-table-content-header {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background-color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.smb-table-content-header.sticky-header {
  position: sticky;
  top: -1px;
  z-index: 4;
}
.smb-table-content-header-item {
  padding: 8px;
  min-width: 40px;
  flex-shrink: 0;
  white-space: nowrap;
}
.smb-table-content-header-item.col-width-1 {
  width: 1%;
}
.smb-table-content-header-item.col-width-1 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-1 {
    width: 1%;
  }
  .smb-table-content-header-item.mobile-width-1px, .smb-table-content-header-item.mobile-width-1px.table-action {
    width: 1px;
  }
}
.smb-table-content-header-item.col-width-2 {
  width: 2%;
}
.smb-table-content-header-item.col-width-2 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-2 {
    width: 2%;
  }
  .smb-table-content-header-item.mobile-width-2px, .smb-table-content-header-item.mobile-width-2px.table-action {
    width: 2px;
  }
}
.smb-table-content-header-item.col-width-3 {
  width: 3%;
}
.smb-table-content-header-item.col-width-3 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-3 {
    width: 3%;
  }
  .smb-table-content-header-item.mobile-width-3px, .smb-table-content-header-item.mobile-width-3px.table-action {
    width: 3px;
  }
}
.smb-table-content-header-item.col-width-4 {
  width: 4%;
}
.smb-table-content-header-item.col-width-4 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-4 {
    width: 4%;
  }
  .smb-table-content-header-item.mobile-width-4px, .smb-table-content-header-item.mobile-width-4px.table-action {
    width: 4px;
  }
}
.smb-table-content-header-item.col-width-5 {
  width: 5%;
}
.smb-table-content-header-item.col-width-5 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-5 {
    width: 5%;
  }
  .smb-table-content-header-item.mobile-width-5px, .smb-table-content-header-item.mobile-width-5px.table-action {
    width: 5px;
  }
}
.smb-table-content-header-item.col-width-6 {
  width: 6%;
}
.smb-table-content-header-item.col-width-6 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-6 {
    width: 6%;
  }
  .smb-table-content-header-item.mobile-width-6px, .smb-table-content-header-item.mobile-width-6px.table-action {
    width: 6px;
  }
}
.smb-table-content-header-item.col-width-7 {
  width: 7%;
}
.smb-table-content-header-item.col-width-7 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-7 {
    width: 7%;
  }
  .smb-table-content-header-item.mobile-width-7px, .smb-table-content-header-item.mobile-width-7px.table-action {
    width: 7px;
  }
}
.smb-table-content-header-item.col-width-8 {
  width: 8%;
}
.smb-table-content-header-item.col-width-8 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-8 {
    width: 8%;
  }
  .smb-table-content-header-item.mobile-width-8px, .smb-table-content-header-item.mobile-width-8px.table-action {
    width: 8px;
  }
}
.smb-table-content-header-item.col-width-9 {
  width: 9%;
}
.smb-table-content-header-item.col-width-9 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-9 {
    width: 9%;
  }
  .smb-table-content-header-item.mobile-width-9px, .smb-table-content-header-item.mobile-width-9px.table-action {
    width: 9px;
  }
}
.smb-table-content-header-item.col-width-10 {
  width: 10%;
}
.smb-table-content-header-item.col-width-10 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-10 {
    width: 10%;
  }
  .smb-table-content-header-item.mobile-width-10px, .smb-table-content-header-item.mobile-width-10px.table-action {
    width: 10px;
  }
}
.smb-table-content-header-item.col-width-11 {
  width: 11%;
}
.smb-table-content-header-item.col-width-11 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-11 {
    width: 11%;
  }
  .smb-table-content-header-item.mobile-width-11px, .smb-table-content-header-item.mobile-width-11px.table-action {
    width: 11px;
  }
}
.smb-table-content-header-item.col-width-12 {
  width: 12%;
}
.smb-table-content-header-item.col-width-12 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-12 {
    width: 12%;
  }
  .smb-table-content-header-item.mobile-width-12px, .smb-table-content-header-item.mobile-width-12px.table-action {
    width: 12px;
  }
}
.smb-table-content-header-item.col-width-13 {
  width: 13%;
}
.smb-table-content-header-item.col-width-13 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-13 {
    width: 13%;
  }
  .smb-table-content-header-item.mobile-width-13px, .smb-table-content-header-item.mobile-width-13px.table-action {
    width: 13px;
  }
}
.smb-table-content-header-item.col-width-14 {
  width: 14%;
}
.smb-table-content-header-item.col-width-14 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-14 {
    width: 14%;
  }
  .smb-table-content-header-item.mobile-width-14px, .smb-table-content-header-item.mobile-width-14px.table-action {
    width: 14px;
  }
}
.smb-table-content-header-item.col-width-15 {
  width: 15%;
}
.smb-table-content-header-item.col-width-15 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-15 {
    width: 15%;
  }
  .smb-table-content-header-item.mobile-width-15px, .smb-table-content-header-item.mobile-width-15px.table-action {
    width: 15px;
  }
}
.smb-table-content-header-item.col-width-16 {
  width: 16%;
}
.smb-table-content-header-item.col-width-16 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-16 {
    width: 16%;
  }
  .smb-table-content-header-item.mobile-width-16px, .smb-table-content-header-item.mobile-width-16px.table-action {
    width: 16px;
  }
}
.smb-table-content-header-item.col-width-17 {
  width: 17%;
}
.smb-table-content-header-item.col-width-17 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-17 {
    width: 17%;
  }
  .smb-table-content-header-item.mobile-width-17px, .smb-table-content-header-item.mobile-width-17px.table-action {
    width: 17px;
  }
}
.smb-table-content-header-item.col-width-18 {
  width: 18%;
}
.smb-table-content-header-item.col-width-18 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-18 {
    width: 18%;
  }
  .smb-table-content-header-item.mobile-width-18px, .smb-table-content-header-item.mobile-width-18px.table-action {
    width: 18px;
  }
}
.smb-table-content-header-item.col-width-19 {
  width: 19%;
}
.smb-table-content-header-item.col-width-19 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-19 {
    width: 19%;
  }
  .smb-table-content-header-item.mobile-width-19px, .smb-table-content-header-item.mobile-width-19px.table-action {
    width: 19px;
  }
}
.smb-table-content-header-item.col-width-20 {
  width: 20%;
}
.smb-table-content-header-item.col-width-20 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-20 {
    width: 20%;
  }
  .smb-table-content-header-item.mobile-width-20px, .smb-table-content-header-item.mobile-width-20px.table-action {
    width: 20px;
  }
}
.smb-table-content-header-item.col-width-21 {
  width: 21%;
}
.smb-table-content-header-item.col-width-21 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-21 {
    width: 21%;
  }
  .smb-table-content-header-item.mobile-width-21px, .smb-table-content-header-item.mobile-width-21px.table-action {
    width: 21px;
  }
}
.smb-table-content-header-item.col-width-22 {
  width: 22%;
}
.smb-table-content-header-item.col-width-22 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-22 {
    width: 22%;
  }
  .smb-table-content-header-item.mobile-width-22px, .smb-table-content-header-item.mobile-width-22px.table-action {
    width: 22px;
  }
}
.smb-table-content-header-item.col-width-23 {
  width: 23%;
}
.smb-table-content-header-item.col-width-23 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-23 {
    width: 23%;
  }
  .smb-table-content-header-item.mobile-width-23px, .smb-table-content-header-item.mobile-width-23px.table-action {
    width: 23px;
  }
}
.smb-table-content-header-item.col-width-24 {
  width: 24%;
}
.smb-table-content-header-item.col-width-24 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-24 {
    width: 24%;
  }
  .smb-table-content-header-item.mobile-width-24px, .smb-table-content-header-item.mobile-width-24px.table-action {
    width: 24px;
  }
}
.smb-table-content-header-item.col-width-25 {
  width: 25%;
}
.smb-table-content-header-item.col-width-25 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-25 {
    width: 25%;
  }
  .smb-table-content-header-item.mobile-width-25px, .smb-table-content-header-item.mobile-width-25px.table-action {
    width: 25px;
  }
}
.smb-table-content-header-item.col-width-26 {
  width: 26%;
}
.smb-table-content-header-item.col-width-26 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-26 {
    width: 26%;
  }
  .smb-table-content-header-item.mobile-width-26px, .smb-table-content-header-item.mobile-width-26px.table-action {
    width: 26px;
  }
}
.smb-table-content-header-item.col-width-27 {
  width: 27%;
}
.smb-table-content-header-item.col-width-27 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-27 {
    width: 27%;
  }
  .smb-table-content-header-item.mobile-width-27px, .smb-table-content-header-item.mobile-width-27px.table-action {
    width: 27px;
  }
}
.smb-table-content-header-item.col-width-28 {
  width: 28%;
}
.smb-table-content-header-item.col-width-28 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-28 {
    width: 28%;
  }
  .smb-table-content-header-item.mobile-width-28px, .smb-table-content-header-item.mobile-width-28px.table-action {
    width: 28px;
  }
}
.smb-table-content-header-item.col-width-29 {
  width: 29%;
}
.smb-table-content-header-item.col-width-29 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-29 {
    width: 29%;
  }
  .smb-table-content-header-item.mobile-width-29px, .smb-table-content-header-item.mobile-width-29px.table-action {
    width: 29px;
  }
}
.smb-table-content-header-item.col-width-30 {
  width: 30%;
}
.smb-table-content-header-item.col-width-30 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-30 {
    width: 30%;
  }
  .smb-table-content-header-item.mobile-width-30px, .smb-table-content-header-item.mobile-width-30px.table-action {
    width: 30px;
  }
}
.smb-table-content-header-item.col-width-31 {
  width: 31%;
}
.smb-table-content-header-item.col-width-31 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-31 {
    width: 31%;
  }
  .smb-table-content-header-item.mobile-width-31px, .smb-table-content-header-item.mobile-width-31px.table-action {
    width: 31px;
  }
}
.smb-table-content-header-item.col-width-32 {
  width: 32%;
}
.smb-table-content-header-item.col-width-32 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-32 {
    width: 32%;
  }
  .smb-table-content-header-item.mobile-width-32px, .smb-table-content-header-item.mobile-width-32px.table-action {
    width: 32px;
  }
}
.smb-table-content-header-item.col-width-33 {
  width: 33%;
}
.smb-table-content-header-item.col-width-33 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-33 {
    width: 33%;
  }
  .smb-table-content-header-item.mobile-width-33px, .smb-table-content-header-item.mobile-width-33px.table-action {
    width: 33px;
  }
}
.smb-table-content-header-item.col-width-34 {
  width: 34%;
}
.smb-table-content-header-item.col-width-34 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-34 {
    width: 34%;
  }
  .smb-table-content-header-item.mobile-width-34px, .smb-table-content-header-item.mobile-width-34px.table-action {
    width: 34px;
  }
}
.smb-table-content-header-item.col-width-35 {
  width: 35%;
}
.smb-table-content-header-item.col-width-35 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-35 {
    width: 35%;
  }
  .smb-table-content-header-item.mobile-width-35px, .smb-table-content-header-item.mobile-width-35px.table-action {
    width: 35px;
  }
}
.smb-table-content-header-item.col-width-36 {
  width: 36%;
}
.smb-table-content-header-item.col-width-36 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-36 {
    width: 36%;
  }
  .smb-table-content-header-item.mobile-width-36px, .smb-table-content-header-item.mobile-width-36px.table-action {
    width: 36px;
  }
}
.smb-table-content-header-item.col-width-37 {
  width: 37%;
}
.smb-table-content-header-item.col-width-37 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-37 {
    width: 37%;
  }
  .smb-table-content-header-item.mobile-width-37px, .smb-table-content-header-item.mobile-width-37px.table-action {
    width: 37px;
  }
}
.smb-table-content-header-item.col-width-38 {
  width: 38%;
}
.smb-table-content-header-item.col-width-38 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-38 {
    width: 38%;
  }
  .smb-table-content-header-item.mobile-width-38px, .smb-table-content-header-item.mobile-width-38px.table-action {
    width: 38px;
  }
}
.smb-table-content-header-item.col-width-39 {
  width: 39%;
}
.smb-table-content-header-item.col-width-39 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-39 {
    width: 39%;
  }
  .smb-table-content-header-item.mobile-width-39px, .smb-table-content-header-item.mobile-width-39px.table-action {
    width: 39px;
  }
}
.smb-table-content-header-item.col-width-40 {
  width: 40%;
}
.smb-table-content-header-item.col-width-40 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-40 {
    width: 40%;
  }
  .smb-table-content-header-item.mobile-width-40px, .smb-table-content-header-item.mobile-width-40px.table-action {
    width: 40px;
  }
}
.smb-table-content-header-item.col-width-41 {
  width: 41%;
}
.smb-table-content-header-item.col-width-41 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-41 {
    width: 41%;
  }
  .smb-table-content-header-item.mobile-width-41px, .smb-table-content-header-item.mobile-width-41px.table-action {
    width: 41px;
  }
}
.smb-table-content-header-item.col-width-42 {
  width: 42%;
}
.smb-table-content-header-item.col-width-42 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-42 {
    width: 42%;
  }
  .smb-table-content-header-item.mobile-width-42px, .smb-table-content-header-item.mobile-width-42px.table-action {
    width: 42px;
  }
}
.smb-table-content-header-item.col-width-43 {
  width: 43%;
}
.smb-table-content-header-item.col-width-43 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-43 {
    width: 43%;
  }
  .smb-table-content-header-item.mobile-width-43px, .smb-table-content-header-item.mobile-width-43px.table-action {
    width: 43px;
  }
}
.smb-table-content-header-item.col-width-44 {
  width: 44%;
}
.smb-table-content-header-item.col-width-44 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-44 {
    width: 44%;
  }
  .smb-table-content-header-item.mobile-width-44px, .smb-table-content-header-item.mobile-width-44px.table-action {
    width: 44px;
  }
}
.smb-table-content-header-item.col-width-45 {
  width: 45%;
}
.smb-table-content-header-item.col-width-45 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-45 {
    width: 45%;
  }
  .smb-table-content-header-item.mobile-width-45px, .smb-table-content-header-item.mobile-width-45px.table-action {
    width: 45px;
  }
}
.smb-table-content-header-item.col-width-46 {
  width: 46%;
}
.smb-table-content-header-item.col-width-46 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-46 {
    width: 46%;
  }
  .smb-table-content-header-item.mobile-width-46px, .smb-table-content-header-item.mobile-width-46px.table-action {
    width: 46px;
  }
}
.smb-table-content-header-item.col-width-47 {
  width: 47%;
}
.smb-table-content-header-item.col-width-47 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-47 {
    width: 47%;
  }
  .smb-table-content-header-item.mobile-width-47px, .smb-table-content-header-item.mobile-width-47px.table-action {
    width: 47px;
  }
}
.smb-table-content-header-item.col-width-48 {
  width: 48%;
}
.smb-table-content-header-item.col-width-48 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-48 {
    width: 48%;
  }
  .smb-table-content-header-item.mobile-width-48px, .smb-table-content-header-item.mobile-width-48px.table-action {
    width: 48px;
  }
}
.smb-table-content-header-item.col-width-49 {
  width: 49%;
}
.smb-table-content-header-item.col-width-49 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-49 {
    width: 49%;
  }
  .smb-table-content-header-item.mobile-width-49px, .smb-table-content-header-item.mobile-width-49px.table-action {
    width: 49px;
  }
}
.smb-table-content-header-item.col-width-50 {
  width: 50%;
}
.smb-table-content-header-item.col-width-50 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-50 {
    width: 50%;
  }
  .smb-table-content-header-item.mobile-width-50px, .smb-table-content-header-item.mobile-width-50px.table-action {
    width: 50px;
  }
}
.smb-table-content-header-item.col-width-51 {
  width: 51%;
}
.smb-table-content-header-item.col-width-51 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-51 {
    width: 51%;
  }
  .smb-table-content-header-item.mobile-width-51px, .smb-table-content-header-item.mobile-width-51px.table-action {
    width: 51px;
  }
}
.smb-table-content-header-item.col-width-52 {
  width: 52%;
}
.smb-table-content-header-item.col-width-52 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-52 {
    width: 52%;
  }
  .smb-table-content-header-item.mobile-width-52px, .smb-table-content-header-item.mobile-width-52px.table-action {
    width: 52px;
  }
}
.smb-table-content-header-item.col-width-53 {
  width: 53%;
}
.smb-table-content-header-item.col-width-53 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-53 {
    width: 53%;
  }
  .smb-table-content-header-item.mobile-width-53px, .smb-table-content-header-item.mobile-width-53px.table-action {
    width: 53px;
  }
}
.smb-table-content-header-item.col-width-54 {
  width: 54%;
}
.smb-table-content-header-item.col-width-54 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-54 {
    width: 54%;
  }
  .smb-table-content-header-item.mobile-width-54px, .smb-table-content-header-item.mobile-width-54px.table-action {
    width: 54px;
  }
}
.smb-table-content-header-item.col-width-55 {
  width: 55%;
}
.smb-table-content-header-item.col-width-55 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-55 {
    width: 55%;
  }
  .smb-table-content-header-item.mobile-width-55px, .smb-table-content-header-item.mobile-width-55px.table-action {
    width: 55px;
  }
}
.smb-table-content-header-item.col-width-56 {
  width: 56%;
}
.smb-table-content-header-item.col-width-56 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-56 {
    width: 56%;
  }
  .smb-table-content-header-item.mobile-width-56px, .smb-table-content-header-item.mobile-width-56px.table-action {
    width: 56px;
  }
}
.smb-table-content-header-item.col-width-57 {
  width: 57%;
}
.smb-table-content-header-item.col-width-57 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-57 {
    width: 57%;
  }
  .smb-table-content-header-item.mobile-width-57px, .smb-table-content-header-item.mobile-width-57px.table-action {
    width: 57px;
  }
}
.smb-table-content-header-item.col-width-58 {
  width: 58%;
}
.smb-table-content-header-item.col-width-58 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-58 {
    width: 58%;
  }
  .smb-table-content-header-item.mobile-width-58px, .smb-table-content-header-item.mobile-width-58px.table-action {
    width: 58px;
  }
}
.smb-table-content-header-item.col-width-59 {
  width: 59%;
}
.smb-table-content-header-item.col-width-59 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-59 {
    width: 59%;
  }
  .smb-table-content-header-item.mobile-width-59px, .smb-table-content-header-item.mobile-width-59px.table-action {
    width: 59px;
  }
}
.smb-table-content-header-item.col-width-60 {
  width: 60%;
}
.smb-table-content-header-item.col-width-60 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-60 {
    width: 60%;
  }
  .smb-table-content-header-item.mobile-width-60px, .smb-table-content-header-item.mobile-width-60px.table-action {
    width: 60px;
  }
}
.smb-table-content-header-item.col-width-61 {
  width: 61%;
}
.smb-table-content-header-item.col-width-61 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-61 {
    width: 61%;
  }
  .smb-table-content-header-item.mobile-width-61px, .smb-table-content-header-item.mobile-width-61px.table-action {
    width: 61px;
  }
}
.smb-table-content-header-item.col-width-62 {
  width: 62%;
}
.smb-table-content-header-item.col-width-62 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-62 {
    width: 62%;
  }
  .smb-table-content-header-item.mobile-width-62px, .smb-table-content-header-item.mobile-width-62px.table-action {
    width: 62px;
  }
}
.smb-table-content-header-item.col-width-63 {
  width: 63%;
}
.smb-table-content-header-item.col-width-63 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-63 {
    width: 63%;
  }
  .smb-table-content-header-item.mobile-width-63px, .smb-table-content-header-item.mobile-width-63px.table-action {
    width: 63px;
  }
}
.smb-table-content-header-item.col-width-64 {
  width: 64%;
}
.smb-table-content-header-item.col-width-64 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-64 {
    width: 64%;
  }
  .smb-table-content-header-item.mobile-width-64px, .smb-table-content-header-item.mobile-width-64px.table-action {
    width: 64px;
  }
}
.smb-table-content-header-item.col-width-65 {
  width: 65%;
}
.smb-table-content-header-item.col-width-65 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-65 {
    width: 65%;
  }
  .smb-table-content-header-item.mobile-width-65px, .smb-table-content-header-item.mobile-width-65px.table-action {
    width: 65px;
  }
}
.smb-table-content-header-item.col-width-66 {
  width: 66%;
}
.smb-table-content-header-item.col-width-66 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-66 {
    width: 66%;
  }
  .smb-table-content-header-item.mobile-width-66px, .smb-table-content-header-item.mobile-width-66px.table-action {
    width: 66px;
  }
}
.smb-table-content-header-item.col-width-67 {
  width: 67%;
}
.smb-table-content-header-item.col-width-67 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-67 {
    width: 67%;
  }
  .smb-table-content-header-item.mobile-width-67px, .smb-table-content-header-item.mobile-width-67px.table-action {
    width: 67px;
  }
}
.smb-table-content-header-item.col-width-68 {
  width: 68%;
}
.smb-table-content-header-item.col-width-68 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-68 {
    width: 68%;
  }
  .smb-table-content-header-item.mobile-width-68px, .smb-table-content-header-item.mobile-width-68px.table-action {
    width: 68px;
  }
}
.smb-table-content-header-item.col-width-69 {
  width: 69%;
}
.smb-table-content-header-item.col-width-69 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-69 {
    width: 69%;
  }
  .smb-table-content-header-item.mobile-width-69px, .smb-table-content-header-item.mobile-width-69px.table-action {
    width: 69px;
  }
}
.smb-table-content-header-item.col-width-70 {
  width: 70%;
}
.smb-table-content-header-item.col-width-70 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-70 {
    width: 70%;
  }
  .smb-table-content-header-item.mobile-width-70px, .smb-table-content-header-item.mobile-width-70px.table-action {
    width: 70px;
  }
}
.smb-table-content-header-item.col-width-71 {
  width: 71%;
}
.smb-table-content-header-item.col-width-71 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-71 {
    width: 71%;
  }
  .smb-table-content-header-item.mobile-width-71px, .smb-table-content-header-item.mobile-width-71px.table-action {
    width: 71px;
  }
}
.smb-table-content-header-item.col-width-72 {
  width: 72%;
}
.smb-table-content-header-item.col-width-72 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-72 {
    width: 72%;
  }
  .smb-table-content-header-item.mobile-width-72px, .smb-table-content-header-item.mobile-width-72px.table-action {
    width: 72px;
  }
}
.smb-table-content-header-item.col-width-73 {
  width: 73%;
}
.smb-table-content-header-item.col-width-73 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-73 {
    width: 73%;
  }
  .smb-table-content-header-item.mobile-width-73px, .smb-table-content-header-item.mobile-width-73px.table-action {
    width: 73px;
  }
}
.smb-table-content-header-item.col-width-74 {
  width: 74%;
}
.smb-table-content-header-item.col-width-74 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-74 {
    width: 74%;
  }
  .smb-table-content-header-item.mobile-width-74px, .smb-table-content-header-item.mobile-width-74px.table-action {
    width: 74px;
  }
}
.smb-table-content-header-item.col-width-75 {
  width: 75%;
}
.smb-table-content-header-item.col-width-75 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-75 {
    width: 75%;
  }
  .smb-table-content-header-item.mobile-width-75px, .smb-table-content-header-item.mobile-width-75px.table-action {
    width: 75px;
  }
}
.smb-table-content-header-item.col-width-76 {
  width: 76%;
}
.smb-table-content-header-item.col-width-76 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-76 {
    width: 76%;
  }
  .smb-table-content-header-item.mobile-width-76px, .smb-table-content-header-item.mobile-width-76px.table-action {
    width: 76px;
  }
}
.smb-table-content-header-item.col-width-77 {
  width: 77%;
}
.smb-table-content-header-item.col-width-77 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-77 {
    width: 77%;
  }
  .smb-table-content-header-item.mobile-width-77px, .smb-table-content-header-item.mobile-width-77px.table-action {
    width: 77px;
  }
}
.smb-table-content-header-item.col-width-78 {
  width: 78%;
}
.smb-table-content-header-item.col-width-78 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-78 {
    width: 78%;
  }
  .smb-table-content-header-item.mobile-width-78px, .smb-table-content-header-item.mobile-width-78px.table-action {
    width: 78px;
  }
}
.smb-table-content-header-item.col-width-79 {
  width: 79%;
}
.smb-table-content-header-item.col-width-79 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-79 {
    width: 79%;
  }
  .smb-table-content-header-item.mobile-width-79px, .smb-table-content-header-item.mobile-width-79px.table-action {
    width: 79px;
  }
}
.smb-table-content-header-item.col-width-80 {
  width: 80%;
}
.smb-table-content-header-item.col-width-80 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-80 {
    width: 80%;
  }
  .smb-table-content-header-item.mobile-width-80px, .smb-table-content-header-item.mobile-width-80px.table-action {
    width: 80px;
  }
}
.smb-table-content-header-item.col-width-81 {
  width: 81%;
}
.smb-table-content-header-item.col-width-81 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-81 {
    width: 81%;
  }
  .smb-table-content-header-item.mobile-width-81px, .smb-table-content-header-item.mobile-width-81px.table-action {
    width: 81px;
  }
}
.smb-table-content-header-item.col-width-82 {
  width: 82%;
}
.smb-table-content-header-item.col-width-82 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-82 {
    width: 82%;
  }
  .smb-table-content-header-item.mobile-width-82px, .smb-table-content-header-item.mobile-width-82px.table-action {
    width: 82px;
  }
}
.smb-table-content-header-item.col-width-83 {
  width: 83%;
}
.smb-table-content-header-item.col-width-83 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-83 {
    width: 83%;
  }
  .smb-table-content-header-item.mobile-width-83px, .smb-table-content-header-item.mobile-width-83px.table-action {
    width: 83px;
  }
}
.smb-table-content-header-item.col-width-84 {
  width: 84%;
}
.smb-table-content-header-item.col-width-84 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-84 {
    width: 84%;
  }
  .smb-table-content-header-item.mobile-width-84px, .smb-table-content-header-item.mobile-width-84px.table-action {
    width: 84px;
  }
}
.smb-table-content-header-item.col-width-85 {
  width: 85%;
}
.smb-table-content-header-item.col-width-85 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-85 {
    width: 85%;
  }
  .smb-table-content-header-item.mobile-width-85px, .smb-table-content-header-item.mobile-width-85px.table-action {
    width: 85px;
  }
}
.smb-table-content-header-item.col-width-86 {
  width: 86%;
}
.smb-table-content-header-item.col-width-86 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-86 {
    width: 86%;
  }
  .smb-table-content-header-item.mobile-width-86px, .smb-table-content-header-item.mobile-width-86px.table-action {
    width: 86px;
  }
}
.smb-table-content-header-item.col-width-87 {
  width: 87%;
}
.smb-table-content-header-item.col-width-87 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-87 {
    width: 87%;
  }
  .smb-table-content-header-item.mobile-width-87px, .smb-table-content-header-item.mobile-width-87px.table-action {
    width: 87px;
  }
}
.smb-table-content-header-item.col-width-88 {
  width: 88%;
}
.smb-table-content-header-item.col-width-88 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-88 {
    width: 88%;
  }
  .smb-table-content-header-item.mobile-width-88px, .smb-table-content-header-item.mobile-width-88px.table-action {
    width: 88px;
  }
}
.smb-table-content-header-item.col-width-89 {
  width: 89%;
}
.smb-table-content-header-item.col-width-89 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-89 {
    width: 89%;
  }
  .smb-table-content-header-item.mobile-width-89px, .smb-table-content-header-item.mobile-width-89px.table-action {
    width: 89px;
  }
}
.smb-table-content-header-item.col-width-90 {
  width: 90%;
}
.smb-table-content-header-item.col-width-90 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-90 {
    width: 90%;
  }
  .smb-table-content-header-item.mobile-width-90px, .smb-table-content-header-item.mobile-width-90px.table-action {
    width: 90px;
  }
}
.smb-table-content-header-item.col-width-91 {
  width: 91%;
}
.smb-table-content-header-item.col-width-91 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-91 {
    width: 91%;
  }
  .smb-table-content-header-item.mobile-width-91px, .smb-table-content-header-item.mobile-width-91px.table-action {
    width: 91px;
  }
}
.smb-table-content-header-item.col-width-92 {
  width: 92%;
}
.smb-table-content-header-item.col-width-92 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-92 {
    width: 92%;
  }
  .smb-table-content-header-item.mobile-width-92px, .smb-table-content-header-item.mobile-width-92px.table-action {
    width: 92px;
  }
}
.smb-table-content-header-item.col-width-93 {
  width: 93%;
}
.smb-table-content-header-item.col-width-93 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-93 {
    width: 93%;
  }
  .smb-table-content-header-item.mobile-width-93px, .smb-table-content-header-item.mobile-width-93px.table-action {
    width: 93px;
  }
}
.smb-table-content-header-item.col-width-94 {
  width: 94%;
}
.smb-table-content-header-item.col-width-94 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-94 {
    width: 94%;
  }
  .smb-table-content-header-item.mobile-width-94px, .smb-table-content-header-item.mobile-width-94px.table-action {
    width: 94px;
  }
}
.smb-table-content-header-item.col-width-95 {
  width: 95%;
}
.smb-table-content-header-item.col-width-95 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-95 {
    width: 95%;
  }
  .smb-table-content-header-item.mobile-width-95px, .smb-table-content-header-item.mobile-width-95px.table-action {
    width: 95px;
  }
}
.smb-table-content-header-item.col-width-96 {
  width: 96%;
}
.smb-table-content-header-item.col-width-96 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-96 {
    width: 96%;
  }
  .smb-table-content-header-item.mobile-width-96px, .smb-table-content-header-item.mobile-width-96px.table-action {
    width: 96px;
  }
}
.smb-table-content-header-item.col-width-97 {
  width: 97%;
}
.smb-table-content-header-item.col-width-97 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-97 {
    width: 97%;
  }
  .smb-table-content-header-item.mobile-width-97px, .smb-table-content-header-item.mobile-width-97px.table-action {
    width: 97px;
  }
}
.smb-table-content-header-item.col-width-98 {
  width: 98%;
}
.smb-table-content-header-item.col-width-98 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-98 {
    width: 98%;
  }
  .smb-table-content-header-item.mobile-width-98px, .smb-table-content-header-item.mobile-width-98px.table-action {
    width: 98px;
  }
}
.smb-table-content-header-item.col-width-99 {
  width: 99%;
}
.smb-table-content-header-item.col-width-99 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-99 {
    width: 99%;
  }
  .smb-table-content-header-item.mobile-width-99px, .smb-table-content-header-item.mobile-width-99px.table-action {
    width: 99px;
  }
}
.smb-table-content-header-item.col-width-100 {
  width: 100%;
}
.smb-table-content-header-item.col-width-100 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-100 {
    width: 100%;
  }
  .smb-table-content-header-item.mobile-width-100px, .smb-table-content-header-item.mobile-width-100px.table-action {
    width: 100px;
  }
}
.smb-table-content-header-item.col-width-101 {
  width: 101%;
}
.smb-table-content-header-item.col-width-101 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-101 {
    width: 101%;
  }
  .smb-table-content-header-item.mobile-width-101px, .smb-table-content-header-item.mobile-width-101px.table-action {
    width: 101px;
  }
}
.smb-table-content-header-item.col-width-102 {
  width: 102%;
}
.smb-table-content-header-item.col-width-102 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-102 {
    width: 102%;
  }
  .smb-table-content-header-item.mobile-width-102px, .smb-table-content-header-item.mobile-width-102px.table-action {
    width: 102px;
  }
}
.smb-table-content-header-item.col-width-103 {
  width: 103%;
}
.smb-table-content-header-item.col-width-103 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-103 {
    width: 103%;
  }
  .smb-table-content-header-item.mobile-width-103px, .smb-table-content-header-item.mobile-width-103px.table-action {
    width: 103px;
  }
}
.smb-table-content-header-item.col-width-104 {
  width: 104%;
}
.smb-table-content-header-item.col-width-104 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-104 {
    width: 104%;
  }
  .smb-table-content-header-item.mobile-width-104px, .smb-table-content-header-item.mobile-width-104px.table-action {
    width: 104px;
  }
}
.smb-table-content-header-item.col-width-105 {
  width: 105%;
}
.smb-table-content-header-item.col-width-105 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-105 {
    width: 105%;
  }
  .smb-table-content-header-item.mobile-width-105px, .smb-table-content-header-item.mobile-width-105px.table-action {
    width: 105px;
  }
}
.smb-table-content-header-item.col-width-106 {
  width: 106%;
}
.smb-table-content-header-item.col-width-106 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-106 {
    width: 106%;
  }
  .smb-table-content-header-item.mobile-width-106px, .smb-table-content-header-item.mobile-width-106px.table-action {
    width: 106px;
  }
}
.smb-table-content-header-item.col-width-107 {
  width: 107%;
}
.smb-table-content-header-item.col-width-107 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-107 {
    width: 107%;
  }
  .smb-table-content-header-item.mobile-width-107px, .smb-table-content-header-item.mobile-width-107px.table-action {
    width: 107px;
  }
}
.smb-table-content-header-item.col-width-108 {
  width: 108%;
}
.smb-table-content-header-item.col-width-108 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-108 {
    width: 108%;
  }
  .smb-table-content-header-item.mobile-width-108px, .smb-table-content-header-item.mobile-width-108px.table-action {
    width: 108px;
  }
}
.smb-table-content-header-item.col-width-109 {
  width: 109%;
}
.smb-table-content-header-item.col-width-109 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-109 {
    width: 109%;
  }
  .smb-table-content-header-item.mobile-width-109px, .smb-table-content-header-item.mobile-width-109px.table-action {
    width: 109px;
  }
}
.smb-table-content-header-item.col-width-110 {
  width: 110%;
}
.smb-table-content-header-item.col-width-110 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-110 {
    width: 110%;
  }
  .smb-table-content-header-item.mobile-width-110px, .smb-table-content-header-item.mobile-width-110px.table-action {
    width: 110px;
  }
}
.smb-table-content-header-item.col-width-111 {
  width: 111%;
}
.smb-table-content-header-item.col-width-111 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-111 {
    width: 111%;
  }
  .smb-table-content-header-item.mobile-width-111px, .smb-table-content-header-item.mobile-width-111px.table-action {
    width: 111px;
  }
}
.smb-table-content-header-item.col-width-112 {
  width: 112%;
}
.smb-table-content-header-item.col-width-112 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-112 {
    width: 112%;
  }
  .smb-table-content-header-item.mobile-width-112px, .smb-table-content-header-item.mobile-width-112px.table-action {
    width: 112px;
  }
}
.smb-table-content-header-item.col-width-113 {
  width: 113%;
}
.smb-table-content-header-item.col-width-113 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-113 {
    width: 113%;
  }
  .smb-table-content-header-item.mobile-width-113px, .smb-table-content-header-item.mobile-width-113px.table-action {
    width: 113px;
  }
}
.smb-table-content-header-item.col-width-114 {
  width: 114%;
}
.smb-table-content-header-item.col-width-114 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-114 {
    width: 114%;
  }
  .smb-table-content-header-item.mobile-width-114px, .smb-table-content-header-item.mobile-width-114px.table-action {
    width: 114px;
  }
}
.smb-table-content-header-item.col-width-115 {
  width: 115%;
}
.smb-table-content-header-item.col-width-115 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-115 {
    width: 115%;
  }
  .smb-table-content-header-item.mobile-width-115px, .smb-table-content-header-item.mobile-width-115px.table-action {
    width: 115px;
  }
}
.smb-table-content-header-item.col-width-116 {
  width: 116%;
}
.smb-table-content-header-item.col-width-116 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-116 {
    width: 116%;
  }
  .smb-table-content-header-item.mobile-width-116px, .smb-table-content-header-item.mobile-width-116px.table-action {
    width: 116px;
  }
}
.smb-table-content-header-item.col-width-117 {
  width: 117%;
}
.smb-table-content-header-item.col-width-117 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-117 {
    width: 117%;
  }
  .smb-table-content-header-item.mobile-width-117px, .smb-table-content-header-item.mobile-width-117px.table-action {
    width: 117px;
  }
}
.smb-table-content-header-item.col-width-118 {
  width: 118%;
}
.smb-table-content-header-item.col-width-118 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-118 {
    width: 118%;
  }
  .smb-table-content-header-item.mobile-width-118px, .smb-table-content-header-item.mobile-width-118px.table-action {
    width: 118px;
  }
}
.smb-table-content-header-item.col-width-119 {
  width: 119%;
}
.smb-table-content-header-item.col-width-119 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-119 {
    width: 119%;
  }
  .smb-table-content-header-item.mobile-width-119px, .smb-table-content-header-item.mobile-width-119px.table-action {
    width: 119px;
  }
}
.smb-table-content-header-item.col-width-120 {
  width: 120%;
}
.smb-table-content-header-item.col-width-120 .team-bank-records-count {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .smb-table-content-header-item.mobile-width-120 {
    width: 120%;
  }
  .smb-table-content-header-item.mobile-width-120px, .smb-table-content-header-item.mobile-width-120px.table-action {
    width: 120px;
  }
}
.smb-table-content-header-item.width-1 {
  width: 1px;
}
.smb-table-content-header-item.width-2 {
  width: 2px;
}
.smb-table-content-header-item.width-3 {
  width: 3px;
}
.smb-table-content-header-item.width-4 {
  width: 4px;
}
.smb-table-content-header-item.width-5 {
  width: 5px;
}
.smb-table-content-header-item.width-6 {
  width: 6px;
}
.smb-table-content-header-item.width-7 {
  width: 7px;
}
.smb-table-content-header-item.width-8 {
  width: 8px;
}
.smb-table-content-header-item.width-9 {
  width: 9px;
}
.smb-table-content-header-item.width-10 {
  width: 10px;
}
.smb-table-content-header-item.width-11 {
  width: 11px;
}
.smb-table-content-header-item.width-12 {
  width: 12px;
}
.smb-table-content-header-item.width-13 {
  width: 13px;
}
.smb-table-content-header-item.width-14 {
  width: 14px;
}
.smb-table-content-header-item.width-15 {
  width: 15px;
}
.smb-table-content-header-item.width-16 {
  width: 16px;
}
.smb-table-content-header-item.width-17 {
  width: 17px;
}
.smb-table-content-header-item.width-18 {
  width: 18px;
}
.smb-table-content-header-item.width-19 {
  width: 19px;
}
.smb-table-content-header-item.width-20 {
  width: 20px;
}
.smb-table-content-header-item.width-21 {
  width: 21px;
}
.smb-table-content-header-item.width-22 {
  width: 22px;
}
.smb-table-content-header-item.width-23 {
  width: 23px;
}
.smb-table-content-header-item.width-24 {
  width: 24px;
}
.smb-table-content-header-item.width-25 {
  width: 25px;
}
.smb-table-content-header-item.width-26 {
  width: 26px;
}
.smb-table-content-header-item.width-27 {
  width: 27px;
}
.smb-table-content-header-item.width-28 {
  width: 28px;
}
.smb-table-content-header-item.width-29 {
  width: 29px;
}
.smb-table-content-header-item.width-30 {
  width: 30px;
}
.smb-table-content-header-item.width-31 {
  width: 31px;
}
.smb-table-content-header-item.width-32 {
  width: 32px;
}
.smb-table-content-header-item.width-33 {
  width: 33px;
}
.smb-table-content-header-item.width-34 {
  width: 34px;
}
.smb-table-content-header-item.width-35 {
  width: 35px;
}
.smb-table-content-header-item.width-36 {
  width: 36px;
}
.smb-table-content-header-item.width-37 {
  width: 37px;
}
.smb-table-content-header-item.width-38 {
  width: 38px;
}
.smb-table-content-header-item.width-39 {
  width: 39px;
}
.smb-table-content-header-item.width-40 {
  width: 40px;
}
.smb-table-content-header-item.width-41 {
  width: 41px;
}
.smb-table-content-header-item.width-42 {
  width: 42px;
}
.smb-table-content-header-item.width-43 {
  width: 43px;
}
.smb-table-content-header-item.width-44 {
  width: 44px;
}
.smb-table-content-header-item.width-45 {
  width: 45px;
}
.smb-table-content-header-item.width-46 {
  width: 46px;
}
.smb-table-content-header-item.width-47 {
  width: 47px;
}
.smb-table-content-header-item.width-48 {
  width: 48px;
}
.smb-table-content-header-item.width-49 {
  width: 49px;
}
.smb-table-content-header-item.width-50 {
  width: 50px;
}
.smb-table-content-header-item.width-51 {
  width: 51px;
}
.smb-table-content-header-item.width-52 {
  width: 52px;
}
.smb-table-content-header-item.width-53 {
  width: 53px;
}
.smb-table-content-header-item.width-54 {
  width: 54px;
}
.smb-table-content-header-item.width-55 {
  width: 55px;
}
.smb-table-content-header-item.width-56 {
  width: 56px;
}
.smb-table-content-header-item.width-57 {
  width: 57px;
}
.smb-table-content-header-item.width-58 {
  width: 58px;
}
.smb-table-content-header-item.width-59 {
  width: 59px;
}
.smb-table-content-header-item.width-60 {
  width: 60px;
}
.smb-table-content-header-item.width-61 {
  width: 61px;
}
.smb-table-content-header-item.width-62 {
  width: 62px;
}
.smb-table-content-header-item.width-63 {
  width: 63px;
}
.smb-table-content-header-item.width-64 {
  width: 64px;
}
.smb-table-content-header-item.width-65 {
  width: 65px;
}
.smb-table-content-header-item.width-66 {
  width: 66px;
}
.smb-table-content-header-item.width-67 {
  width: 67px;
}
.smb-table-content-header-item.width-68 {
  width: 68px;
}
.smb-table-content-header-item.width-69 {
  width: 69px;
}
.smb-table-content-header-item.width-70 {
  width: 70px;
}
.smb-table-content-header-item.width-71 {
  width: 71px;
}
.smb-table-content-header-item.width-72 {
  width: 72px;
}
.smb-table-content-header-item.width-73 {
  width: 73px;
}
.smb-table-content-header-item.width-74 {
  width: 74px;
}
.smb-table-content-header-item.width-75 {
  width: 75px;
}
.smb-table-content-header-item.width-76 {
  width: 76px;
}
.smb-table-content-header-item.width-77 {
  width: 77px;
}
.smb-table-content-header-item.width-78 {
  width: 78px;
}
.smb-table-content-header-item.width-79 {
  width: 79px;
}
.smb-table-content-header-item.width-80 {
  width: 80px;
}
.smb-table-content-header-item.width-81 {
  width: 81px;
}
.smb-table-content-header-item.width-82 {
  width: 82px;
}
.smb-table-content-header-item.width-83 {
  width: 83px;
}
.smb-table-content-header-item.width-84 {
  width: 84px;
}
.smb-table-content-header-item.width-85 {
  width: 85px;
}
.smb-table-content-header-item.width-86 {
  width: 86px;
}
.smb-table-content-header-item.width-87 {
  width: 87px;
}
.smb-table-content-header-item.width-88 {
  width: 88px;
}
.smb-table-content-header-item.width-89 {
  width: 89px;
}
.smb-table-content-header-item.width-90 {
  width: 90px;
}
.smb-table-content-header-item.width-91 {
  width: 91px;
}
.smb-table-content-header-item.width-92 {
  width: 92px;
}
.smb-table-content-header-item.width-93 {
  width: 93px;
}
.smb-table-content-header-item.width-94 {
  width: 94px;
}
.smb-table-content-header-item.width-95 {
  width: 95px;
}
.smb-table-content-header-item.width-96 {
  width: 96px;
}
.smb-table-content-header-item.width-97 {
  width: 97px;
}
.smb-table-content-header-item.width-98 {
  width: 98px;
}
.smb-table-content-header-item.width-99 {
  width: 99px;
}
.smb-table-content-header-item.width-100 {
  width: 100px;
}
.smb-table-content-header-item.width-101 {
  width: 101px;
}
.smb-table-content-header-item.width-102 {
  width: 102px;
}
.smb-table-content-header-item.width-103 {
  width: 103px;
}
.smb-table-content-header-item.width-104 {
  width: 104px;
}
.smb-table-content-header-item.width-105 {
  width: 105px;
}
.smb-table-content-header-item.width-106 {
  width: 106px;
}
.smb-table-content-header-item.width-107 {
  width: 107px;
}
.smb-table-content-header-item.width-108 {
  width: 108px;
}
.smb-table-content-header-item.width-109 {
  width: 109px;
}
.smb-table-content-header-item.width-110 {
  width: 110px;
}
.smb-table-content-header-item.width-111 {
  width: 111px;
}
.smb-table-content-header-item.width-112 {
  width: 112px;
}
.smb-table-content-header-item.width-113 {
  width: 113px;
}
.smb-table-content-header-item.width-114 {
  width: 114px;
}
.smb-table-content-header-item.width-115 {
  width: 115px;
}
.smb-table-content-header-item.width-116 {
  width: 116px;
}
.smb-table-content-header-item.width-117 {
  width: 117px;
}
.smb-table-content-header-item.width-118 {
  width: 118px;
}
.smb-table-content-header-item.width-119 {
  width: 119px;
}
.smb-table-content-header-item.width-120 {
  width: 120px;
}
.smb-table-content-header-item.width-121 {
  width: 121px;
}
.smb-table-content-header-item.width-122 {
  width: 122px;
}
.smb-table-content-header-item.width-123 {
  width: 123px;
}
.smb-table-content-header-item.width-124 {
  width: 124px;
}
.smb-table-content-header-item.width-125 {
  width: 125px;
}
.smb-table-content-header-item.width-126 {
  width: 126px;
}
.smb-table-content-header-item.width-127 {
  width: 127px;
}
.smb-table-content-header-item.width-128 {
  width: 128px;
}
.smb-table-content-header-item.width-129 {
  width: 129px;
}
.smb-table-content-header-item.width-130 {
  width: 130px;
}
.smb-table-content-header-item.width-131 {
  width: 131px;
}
.smb-table-content-header-item.width-132 {
  width: 132px;
}
.smb-table-content-header-item.width-133 {
  width: 133px;
}
.smb-table-content-header-item.width-134 {
  width: 134px;
}
.smb-table-content-header-item.width-135 {
  width: 135px;
}
.smb-table-content-header-item.width-136 {
  width: 136px;
}
.smb-table-content-header-item.width-137 {
  width: 137px;
}
.smb-table-content-header-item.width-138 {
  width: 138px;
}
.smb-table-content-header-item.width-139 {
  width: 139px;
}
.smb-table-content-header-item.width-140 {
  width: 140px;
}
.smb-table-content-header-item.width-141 {
  width: 141px;
}
.smb-table-content-header-item.width-142 {
  width: 142px;
}
.smb-table-content-header-item.width-143 {
  width: 143px;
}
.smb-table-content-header-item.width-144 {
  width: 144px;
}
.smb-table-content-header-item.width-145 {
  width: 145px;
}
.smb-table-content-header-item.width-146 {
  width: 146px;
}
.smb-table-content-header-item.width-147 {
  width: 147px;
}
.smb-table-content-header-item.width-148 {
  width: 148px;
}
.smb-table-content-header-item.width-149 {
  width: 149px;
}
.smb-table-content-header-item.width-150 {
  width: 150px;
}
.smb-table-content-header-item.width-151 {
  width: 151px;
}
.smb-table-content-header-item.width-152 {
  width: 152px;
}
.smb-table-content-header-item.width-153 {
  width: 153px;
}
.smb-table-content-header-item.width-154 {
  width: 154px;
}
.smb-table-content-header-item.width-155 {
  width: 155px;
}
.smb-table-content-header-item.width-156 {
  width: 156px;
}
.smb-table-content-header-item.width-157 {
  width: 157px;
}
.smb-table-content-header-item.width-158 {
  width: 158px;
}
.smb-table-content-header-item.width-159 {
  width: 159px;
}
.smb-table-content-header-item.width-160 {
  width: 160px;
}
.smb-table-content-header-item.width-161 {
  width: 161px;
}
.smb-table-content-header-item.width-162 {
  width: 162px;
}
.smb-table-content-header-item.width-163 {
  width: 163px;
}
.smb-table-content-header-item.width-164 {
  width: 164px;
}
.smb-table-content-header-item.width-165 {
  width: 165px;
}
.smb-table-content-header-item.width-166 {
  width: 166px;
}
.smb-table-content-header-item.width-167 {
  width: 167px;
}
.smb-table-content-header-item.width-168 {
  width: 168px;
}
.smb-table-content-header-item.width-169 {
  width: 169px;
}
.smb-table-content-header-item.width-170 {
  width: 170px;
}
.smb-table-content-header-item.width-171 {
  width: 171px;
}
.smb-table-content-header-item.width-172 {
  width: 172px;
}
.smb-table-content-header-item.width-173 {
  width: 173px;
}
.smb-table-content-header-item.width-174 {
  width: 174px;
}
.smb-table-content-header-item.width-175 {
  width: 175px;
}
.smb-table-content-header-item.width-176 {
  width: 176px;
}
.smb-table-content-header-item.width-177 {
  width: 177px;
}
.smb-table-content-header-item.width-178 {
  width: 178px;
}
.smb-table-content-header-item.width-179 {
  width: 179px;
}
.smb-table-content-header-item.width-180 {
  width: 180px;
}
.smb-table-content-header-item.width-181 {
  width: 181px;
}
.smb-table-content-header-item.width-182 {
  width: 182px;
}
.smb-table-content-header-item.width-183 {
  width: 183px;
}
.smb-table-content-header-item.width-184 {
  width: 184px;
}
.smb-table-content-header-item.width-185 {
  width: 185px;
}
.smb-table-content-header-item.width-186 {
  width: 186px;
}
.smb-table-content-header-item.width-187 {
  width: 187px;
}
.smb-table-content-header-item.width-188 {
  width: 188px;
}
.smb-table-content-header-item.width-189 {
  width: 189px;
}
.smb-table-content-header-item.width-190 {
  width: 190px;
}
.smb-table-content-header-item.width-191 {
  width: 191px;
}
.smb-table-content-header-item.width-192 {
  width: 192px;
}
.smb-table-content-header-item.width-193 {
  width: 193px;
}
.smb-table-content-header-item.width-194 {
  width: 194px;
}
.smb-table-content-header-item.width-195 {
  width: 195px;
}
.smb-table-content-header-item.width-196 {
  width: 196px;
}
.smb-table-content-header-item.width-197 {
  width: 197px;
}
.smb-table-content-header-item.width-198 {
  width: 198px;
}
.smb-table-content-header-item.width-199 {
  width: 199px;
}
.smb-table-content-header-item.width-200 {
  width: 200px;
}
.smb-table-content-header-item.smb-table-selection, .smb-table-content-header-item.smb-table-lock, .smb-table-content-header-item.smb-table-tree, .smb-table-content-header-item.smb-table-drag, .smb-table-content-header-item.smb-table-collect {
  width: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: #666;
}
.smb-table-content-header-item.smb-table-selection:not(:last-child), .smb-table-content-header-item.smb-table-lock:not(:last-child), .smb-table-content-header-item.smb-table-tree:not(:last-child), .smb-table-content-header-item.smb-table-drag:not(:last-child), .smb-table-content-header-item.smb-table-collect:not(:last-child) {
  border: none;
}
.smb-table-content-header-item.table-action {
  text-align: right;
}
.smb-table-content-body {
  height: calc(100% - 44px);
}
.smb-table-content-body-row {
  display: flex;
  width: 100%;
  font-size: 14px;
  color: #ccc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.smb-table-content-body-row-item {
  padding: 8px;
  position: relative;
  flex-shrink: 0;
}
.smb-table-content-body-row-item .smb-table-item-handle {
  cursor: pointer;
  color: #ccc;
}
.smb-table-content-body-row-item.row-item-tree {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}
.smb-table-content-body-row-item.row-item-tree .smb-icon.smb-icon-fold-up,
.smb-table-content-body-row-item.row-item-tree .smb-icon.smb-icon-expand-down {
  cursor: pointer;
}
.smb-table-content-body-row-item.row-item-tree .smb-icon.smb-icon-fold-up {
  display: block;
}
.smb-table-content-body-row-item.row-item-tree .smb-icon.smb-icon-expand-down {
  display: none;
}
.smb-table-content-body-row-item.row-item-tree:not(.collapsed) .smb-icon.smb-icon-fold-up {
  display: none;
}
.smb-table-content-body-row-item.row-item-tree:not(.collapsed) .smb-icon.smb-icon-expand-down {
  display: block;
}
.smb-table-content-body-row-item.row-item-tree:not(.collapsed)::before {
  content: " ";
  background-color: #666;
  position: absolute;
  width: 1px;
  height: 17px;
  top: 27px;
  left: 19px;
}
.smb-table-content-body-row-item.row-item-selection, .smb-table-content-body-row-item.row-item-lock, .smb-table-content-body-row-item.row-item-tree, .smb-table-content-body-row-item.row-item-drag, .smb-table-content-body-row-item.row-item-collect {
  width: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: #666;
}
.smb-table-content-body-row-item.row-item-selection i, .smb-table-content-body-row-item.row-item-lock i, .smb-table-content-body-row-item.row-item-tree i, .smb-table-content-body-row-item.row-item-drag i, .smb-table-content-body-row-item.row-item-collect i {
  font-size: 16px;
  font-weight: 400;
  color: #999;
}
.smb-table-content-body-row-item.row-item-selection i.smb-icon-move, .smb-table-content-body-row-item.row-item-lock i.smb-icon-move, .smb-table-content-body-row-item.row-item-tree i.smb-icon-move, .smb-table-content-body-row-item.row-item-drag i.smb-icon-move, .smb-table-content-body-row-item.row-item-collect i.smb-icon-move {
  cursor: move;
  color: #666;
}
.smb-table-content-body-row-item.row-item-selection i.smb-icon-move:hover, .smb-table-content-body-row-item.row-item-lock i.smb-icon-move:hover, .smb-table-content-body-row-item.row-item-tree i.smb-icon-move:hover, .smb-table-content-body-row-item.row-item-drag i.smb-icon-move:hover, .smb-table-content-body-row-item.row-item-collect i.smb-icon-move:hover {
  color: #fff;
}
.smb-table-content-body-row-item.row-item-more {
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.smb-table-content-body-row-item.row-item-more > *:not(:first-child) {
  margin-left: 8px;
}
.smb-table-content-body-row-item.row-item-more .smb-dropdown .dropdown-menu {
  z-index: 5;
  overflow-y: unset;
}
.smb-table-content-body-row-item.row-item-more .smb-dropdown .smb-dropdown-btn {
  padding: 0;
  border: none;
  border-radius: 2px;
  display: flex;
  align-items: center;
  padding: 4px;
  color: #999;
}
.smb-table-content-body-row-item.row-item-more .smb-dropdown .smb-dropdown-btn:not(.disabled):hover, .smb-table-content-body-row-item.row-item-more .smb-dropdown .smb-dropdown-btn:not(.disabled)[aria-expanded=true] {
  background-color: #202224;
  color: #fff;
}
.smb-table-content-body-row-item.row-item-pre-wrap {
  white-space: pre-wrap;
}
.smb-table-content-body-row-item.col-width-1 {
  width: 1%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-1 {
    width: 1%;
  }
  .smb-table-content-body-row-item.mobile-width-1px {
    width: 1px;
  }
}
.smb-table-content-body-row-item.col-width-2 {
  width: 2%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-2 {
    width: 2%;
  }
  .smb-table-content-body-row-item.mobile-width-2px {
    width: 2px;
  }
}
.smb-table-content-body-row-item.col-width-3 {
  width: 3%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-3 {
    width: 3%;
  }
  .smb-table-content-body-row-item.mobile-width-3px {
    width: 3px;
  }
}
.smb-table-content-body-row-item.col-width-4 {
  width: 4%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-4 {
    width: 4%;
  }
  .smb-table-content-body-row-item.mobile-width-4px {
    width: 4px;
  }
}
.smb-table-content-body-row-item.col-width-5 {
  width: 5%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-5 {
    width: 5%;
  }
  .smb-table-content-body-row-item.mobile-width-5px {
    width: 5px;
  }
}
.smb-table-content-body-row-item.col-width-6 {
  width: 6%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-6 {
    width: 6%;
  }
  .smb-table-content-body-row-item.mobile-width-6px {
    width: 6px;
  }
}
.smb-table-content-body-row-item.col-width-7 {
  width: 7%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-7 {
    width: 7%;
  }
  .smb-table-content-body-row-item.mobile-width-7px {
    width: 7px;
  }
}
.smb-table-content-body-row-item.col-width-8 {
  width: 8%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-8 {
    width: 8%;
  }
  .smb-table-content-body-row-item.mobile-width-8px {
    width: 8px;
  }
}
.smb-table-content-body-row-item.col-width-9 {
  width: 9%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-9 {
    width: 9%;
  }
  .smb-table-content-body-row-item.mobile-width-9px {
    width: 9px;
  }
}
.smb-table-content-body-row-item.col-width-10 {
  width: 10%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-10 {
    width: 10%;
  }
  .smb-table-content-body-row-item.mobile-width-10px {
    width: 10px;
  }
}
.smb-table-content-body-row-item.col-width-11 {
  width: 11%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-11 {
    width: 11%;
  }
  .smb-table-content-body-row-item.mobile-width-11px {
    width: 11px;
  }
}
.smb-table-content-body-row-item.col-width-12 {
  width: 12%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-12 {
    width: 12%;
  }
  .smb-table-content-body-row-item.mobile-width-12px {
    width: 12px;
  }
}
.smb-table-content-body-row-item.col-width-13 {
  width: 13%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-13 {
    width: 13%;
  }
  .smb-table-content-body-row-item.mobile-width-13px {
    width: 13px;
  }
}
.smb-table-content-body-row-item.col-width-14 {
  width: 14%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-14 {
    width: 14%;
  }
  .smb-table-content-body-row-item.mobile-width-14px {
    width: 14px;
  }
}
.smb-table-content-body-row-item.col-width-15 {
  width: 15%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-15 {
    width: 15%;
  }
  .smb-table-content-body-row-item.mobile-width-15px {
    width: 15px;
  }
}
.smb-table-content-body-row-item.col-width-16 {
  width: 16%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-16 {
    width: 16%;
  }
  .smb-table-content-body-row-item.mobile-width-16px {
    width: 16px;
  }
}
.smb-table-content-body-row-item.col-width-17 {
  width: 17%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-17 {
    width: 17%;
  }
  .smb-table-content-body-row-item.mobile-width-17px {
    width: 17px;
  }
}
.smb-table-content-body-row-item.col-width-18 {
  width: 18%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-18 {
    width: 18%;
  }
  .smb-table-content-body-row-item.mobile-width-18px {
    width: 18px;
  }
}
.smb-table-content-body-row-item.col-width-19 {
  width: 19%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-19 {
    width: 19%;
  }
  .smb-table-content-body-row-item.mobile-width-19px {
    width: 19px;
  }
}
.smb-table-content-body-row-item.col-width-20 {
  width: 20%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-20 {
    width: 20%;
  }
  .smb-table-content-body-row-item.mobile-width-20px {
    width: 20px;
  }
}
.smb-table-content-body-row-item.col-width-21 {
  width: 21%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-21 {
    width: 21%;
  }
  .smb-table-content-body-row-item.mobile-width-21px {
    width: 21px;
  }
}
.smb-table-content-body-row-item.col-width-22 {
  width: 22%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-22 {
    width: 22%;
  }
  .smb-table-content-body-row-item.mobile-width-22px {
    width: 22px;
  }
}
.smb-table-content-body-row-item.col-width-23 {
  width: 23%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-23 {
    width: 23%;
  }
  .smb-table-content-body-row-item.mobile-width-23px {
    width: 23px;
  }
}
.smb-table-content-body-row-item.col-width-24 {
  width: 24%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-24 {
    width: 24%;
  }
  .smb-table-content-body-row-item.mobile-width-24px {
    width: 24px;
  }
}
.smb-table-content-body-row-item.col-width-25 {
  width: 25%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-25 {
    width: 25%;
  }
  .smb-table-content-body-row-item.mobile-width-25px {
    width: 25px;
  }
}
.smb-table-content-body-row-item.col-width-26 {
  width: 26%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-26 {
    width: 26%;
  }
  .smb-table-content-body-row-item.mobile-width-26px {
    width: 26px;
  }
}
.smb-table-content-body-row-item.col-width-27 {
  width: 27%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-27 {
    width: 27%;
  }
  .smb-table-content-body-row-item.mobile-width-27px {
    width: 27px;
  }
}
.smb-table-content-body-row-item.col-width-28 {
  width: 28%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-28 {
    width: 28%;
  }
  .smb-table-content-body-row-item.mobile-width-28px {
    width: 28px;
  }
}
.smb-table-content-body-row-item.col-width-29 {
  width: 29%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-29 {
    width: 29%;
  }
  .smb-table-content-body-row-item.mobile-width-29px {
    width: 29px;
  }
}
.smb-table-content-body-row-item.col-width-30 {
  width: 30%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-30 {
    width: 30%;
  }
  .smb-table-content-body-row-item.mobile-width-30px {
    width: 30px;
  }
}
.smb-table-content-body-row-item.col-width-31 {
  width: 31%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-31 {
    width: 31%;
  }
  .smb-table-content-body-row-item.mobile-width-31px {
    width: 31px;
  }
}
.smb-table-content-body-row-item.col-width-32 {
  width: 32%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-32 {
    width: 32%;
  }
  .smb-table-content-body-row-item.mobile-width-32px {
    width: 32px;
  }
}
.smb-table-content-body-row-item.col-width-33 {
  width: 33%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-33 {
    width: 33%;
  }
  .smb-table-content-body-row-item.mobile-width-33px {
    width: 33px;
  }
}
.smb-table-content-body-row-item.col-width-34 {
  width: 34%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-34 {
    width: 34%;
  }
  .smb-table-content-body-row-item.mobile-width-34px {
    width: 34px;
  }
}
.smb-table-content-body-row-item.col-width-35 {
  width: 35%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-35 {
    width: 35%;
  }
  .smb-table-content-body-row-item.mobile-width-35px {
    width: 35px;
  }
}
.smb-table-content-body-row-item.col-width-36 {
  width: 36%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-36 {
    width: 36%;
  }
  .smb-table-content-body-row-item.mobile-width-36px {
    width: 36px;
  }
}
.smb-table-content-body-row-item.col-width-37 {
  width: 37%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-37 {
    width: 37%;
  }
  .smb-table-content-body-row-item.mobile-width-37px {
    width: 37px;
  }
}
.smb-table-content-body-row-item.col-width-38 {
  width: 38%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-38 {
    width: 38%;
  }
  .smb-table-content-body-row-item.mobile-width-38px {
    width: 38px;
  }
}
.smb-table-content-body-row-item.col-width-39 {
  width: 39%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-39 {
    width: 39%;
  }
  .smb-table-content-body-row-item.mobile-width-39px {
    width: 39px;
  }
}
.smb-table-content-body-row-item.col-width-40 {
  width: 40%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-40 {
    width: 40%;
  }
  .smb-table-content-body-row-item.mobile-width-40px {
    width: 40px;
  }
}
.smb-table-content-body-row-item.col-width-41 {
  width: 41%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-41 {
    width: 41%;
  }
  .smb-table-content-body-row-item.mobile-width-41px {
    width: 41px;
  }
}
.smb-table-content-body-row-item.col-width-42 {
  width: 42%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-42 {
    width: 42%;
  }
  .smb-table-content-body-row-item.mobile-width-42px {
    width: 42px;
  }
}
.smb-table-content-body-row-item.col-width-43 {
  width: 43%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-43 {
    width: 43%;
  }
  .smb-table-content-body-row-item.mobile-width-43px {
    width: 43px;
  }
}
.smb-table-content-body-row-item.col-width-44 {
  width: 44%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-44 {
    width: 44%;
  }
  .smb-table-content-body-row-item.mobile-width-44px {
    width: 44px;
  }
}
.smb-table-content-body-row-item.col-width-45 {
  width: 45%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-45 {
    width: 45%;
  }
  .smb-table-content-body-row-item.mobile-width-45px {
    width: 45px;
  }
}
.smb-table-content-body-row-item.col-width-46 {
  width: 46%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-46 {
    width: 46%;
  }
  .smb-table-content-body-row-item.mobile-width-46px {
    width: 46px;
  }
}
.smb-table-content-body-row-item.col-width-47 {
  width: 47%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-47 {
    width: 47%;
  }
  .smb-table-content-body-row-item.mobile-width-47px {
    width: 47px;
  }
}
.smb-table-content-body-row-item.col-width-48 {
  width: 48%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-48 {
    width: 48%;
  }
  .smb-table-content-body-row-item.mobile-width-48px {
    width: 48px;
  }
}
.smb-table-content-body-row-item.col-width-49 {
  width: 49%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-49 {
    width: 49%;
  }
  .smb-table-content-body-row-item.mobile-width-49px {
    width: 49px;
  }
}
.smb-table-content-body-row-item.col-width-50 {
  width: 50%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-50 {
    width: 50%;
  }
  .smb-table-content-body-row-item.mobile-width-50px {
    width: 50px;
  }
}
.smb-table-content-body-row-item.col-width-51 {
  width: 51%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-51 {
    width: 51%;
  }
  .smb-table-content-body-row-item.mobile-width-51px {
    width: 51px;
  }
}
.smb-table-content-body-row-item.col-width-52 {
  width: 52%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-52 {
    width: 52%;
  }
  .smb-table-content-body-row-item.mobile-width-52px {
    width: 52px;
  }
}
.smb-table-content-body-row-item.col-width-53 {
  width: 53%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-53 {
    width: 53%;
  }
  .smb-table-content-body-row-item.mobile-width-53px {
    width: 53px;
  }
}
.smb-table-content-body-row-item.col-width-54 {
  width: 54%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-54 {
    width: 54%;
  }
  .smb-table-content-body-row-item.mobile-width-54px {
    width: 54px;
  }
}
.smb-table-content-body-row-item.col-width-55 {
  width: 55%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-55 {
    width: 55%;
  }
  .smb-table-content-body-row-item.mobile-width-55px {
    width: 55px;
  }
}
.smb-table-content-body-row-item.col-width-56 {
  width: 56%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-56 {
    width: 56%;
  }
  .smb-table-content-body-row-item.mobile-width-56px {
    width: 56px;
  }
}
.smb-table-content-body-row-item.col-width-57 {
  width: 57%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-57 {
    width: 57%;
  }
  .smb-table-content-body-row-item.mobile-width-57px {
    width: 57px;
  }
}
.smb-table-content-body-row-item.col-width-58 {
  width: 58%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-58 {
    width: 58%;
  }
  .smb-table-content-body-row-item.mobile-width-58px {
    width: 58px;
  }
}
.smb-table-content-body-row-item.col-width-59 {
  width: 59%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-59 {
    width: 59%;
  }
  .smb-table-content-body-row-item.mobile-width-59px {
    width: 59px;
  }
}
.smb-table-content-body-row-item.col-width-60 {
  width: 60%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-60 {
    width: 60%;
  }
  .smb-table-content-body-row-item.mobile-width-60px {
    width: 60px;
  }
}
.smb-table-content-body-row-item.col-width-61 {
  width: 61%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-61 {
    width: 61%;
  }
  .smb-table-content-body-row-item.mobile-width-61px {
    width: 61px;
  }
}
.smb-table-content-body-row-item.col-width-62 {
  width: 62%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-62 {
    width: 62%;
  }
  .smb-table-content-body-row-item.mobile-width-62px {
    width: 62px;
  }
}
.smb-table-content-body-row-item.col-width-63 {
  width: 63%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-63 {
    width: 63%;
  }
  .smb-table-content-body-row-item.mobile-width-63px {
    width: 63px;
  }
}
.smb-table-content-body-row-item.col-width-64 {
  width: 64%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-64 {
    width: 64%;
  }
  .smb-table-content-body-row-item.mobile-width-64px {
    width: 64px;
  }
}
.smb-table-content-body-row-item.col-width-65 {
  width: 65%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-65 {
    width: 65%;
  }
  .smb-table-content-body-row-item.mobile-width-65px {
    width: 65px;
  }
}
.smb-table-content-body-row-item.col-width-66 {
  width: 66%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-66 {
    width: 66%;
  }
  .smb-table-content-body-row-item.mobile-width-66px {
    width: 66px;
  }
}
.smb-table-content-body-row-item.col-width-67 {
  width: 67%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-67 {
    width: 67%;
  }
  .smb-table-content-body-row-item.mobile-width-67px {
    width: 67px;
  }
}
.smb-table-content-body-row-item.col-width-68 {
  width: 68%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-68 {
    width: 68%;
  }
  .smb-table-content-body-row-item.mobile-width-68px {
    width: 68px;
  }
}
.smb-table-content-body-row-item.col-width-69 {
  width: 69%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-69 {
    width: 69%;
  }
  .smb-table-content-body-row-item.mobile-width-69px {
    width: 69px;
  }
}
.smb-table-content-body-row-item.col-width-70 {
  width: 70%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-70 {
    width: 70%;
  }
  .smb-table-content-body-row-item.mobile-width-70px {
    width: 70px;
  }
}
.smb-table-content-body-row-item.col-width-71 {
  width: 71%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-71 {
    width: 71%;
  }
  .smb-table-content-body-row-item.mobile-width-71px {
    width: 71px;
  }
}
.smb-table-content-body-row-item.col-width-72 {
  width: 72%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-72 {
    width: 72%;
  }
  .smb-table-content-body-row-item.mobile-width-72px {
    width: 72px;
  }
}
.smb-table-content-body-row-item.col-width-73 {
  width: 73%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-73 {
    width: 73%;
  }
  .smb-table-content-body-row-item.mobile-width-73px {
    width: 73px;
  }
}
.smb-table-content-body-row-item.col-width-74 {
  width: 74%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-74 {
    width: 74%;
  }
  .smb-table-content-body-row-item.mobile-width-74px {
    width: 74px;
  }
}
.smb-table-content-body-row-item.col-width-75 {
  width: 75%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-75 {
    width: 75%;
  }
  .smb-table-content-body-row-item.mobile-width-75px {
    width: 75px;
  }
}
.smb-table-content-body-row-item.col-width-76 {
  width: 76%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-76 {
    width: 76%;
  }
  .smb-table-content-body-row-item.mobile-width-76px {
    width: 76px;
  }
}
.smb-table-content-body-row-item.col-width-77 {
  width: 77%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-77 {
    width: 77%;
  }
  .smb-table-content-body-row-item.mobile-width-77px {
    width: 77px;
  }
}
.smb-table-content-body-row-item.col-width-78 {
  width: 78%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-78 {
    width: 78%;
  }
  .smb-table-content-body-row-item.mobile-width-78px {
    width: 78px;
  }
}
.smb-table-content-body-row-item.col-width-79 {
  width: 79%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-79 {
    width: 79%;
  }
  .smb-table-content-body-row-item.mobile-width-79px {
    width: 79px;
  }
}
.smb-table-content-body-row-item.col-width-80 {
  width: 80%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-80 {
    width: 80%;
  }
  .smb-table-content-body-row-item.mobile-width-80px {
    width: 80px;
  }
}
.smb-table-content-body-row-item.col-width-81 {
  width: 81%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-81 {
    width: 81%;
  }
  .smb-table-content-body-row-item.mobile-width-81px {
    width: 81px;
  }
}
.smb-table-content-body-row-item.col-width-82 {
  width: 82%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-82 {
    width: 82%;
  }
  .smb-table-content-body-row-item.mobile-width-82px {
    width: 82px;
  }
}
.smb-table-content-body-row-item.col-width-83 {
  width: 83%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-83 {
    width: 83%;
  }
  .smb-table-content-body-row-item.mobile-width-83px {
    width: 83px;
  }
}
.smb-table-content-body-row-item.col-width-84 {
  width: 84%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-84 {
    width: 84%;
  }
  .smb-table-content-body-row-item.mobile-width-84px {
    width: 84px;
  }
}
.smb-table-content-body-row-item.col-width-85 {
  width: 85%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-85 {
    width: 85%;
  }
  .smb-table-content-body-row-item.mobile-width-85px {
    width: 85px;
  }
}
.smb-table-content-body-row-item.col-width-86 {
  width: 86%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-86 {
    width: 86%;
  }
  .smb-table-content-body-row-item.mobile-width-86px {
    width: 86px;
  }
}
.smb-table-content-body-row-item.col-width-87 {
  width: 87%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-87 {
    width: 87%;
  }
  .smb-table-content-body-row-item.mobile-width-87px {
    width: 87px;
  }
}
.smb-table-content-body-row-item.col-width-88 {
  width: 88%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-88 {
    width: 88%;
  }
  .smb-table-content-body-row-item.mobile-width-88px {
    width: 88px;
  }
}
.smb-table-content-body-row-item.col-width-89 {
  width: 89%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-89 {
    width: 89%;
  }
  .smb-table-content-body-row-item.mobile-width-89px {
    width: 89px;
  }
}
.smb-table-content-body-row-item.col-width-90 {
  width: 90%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-90 {
    width: 90%;
  }
  .smb-table-content-body-row-item.mobile-width-90px {
    width: 90px;
  }
}
.smb-table-content-body-row-item.col-width-91 {
  width: 91%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-91 {
    width: 91%;
  }
  .smb-table-content-body-row-item.mobile-width-91px {
    width: 91px;
  }
}
.smb-table-content-body-row-item.col-width-92 {
  width: 92%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-92 {
    width: 92%;
  }
  .smb-table-content-body-row-item.mobile-width-92px {
    width: 92px;
  }
}
.smb-table-content-body-row-item.col-width-93 {
  width: 93%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-93 {
    width: 93%;
  }
  .smb-table-content-body-row-item.mobile-width-93px {
    width: 93px;
  }
}
.smb-table-content-body-row-item.col-width-94 {
  width: 94%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-94 {
    width: 94%;
  }
  .smb-table-content-body-row-item.mobile-width-94px {
    width: 94px;
  }
}
.smb-table-content-body-row-item.col-width-95 {
  width: 95%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-95 {
    width: 95%;
  }
  .smb-table-content-body-row-item.mobile-width-95px {
    width: 95px;
  }
}
.smb-table-content-body-row-item.col-width-96 {
  width: 96%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-96 {
    width: 96%;
  }
  .smb-table-content-body-row-item.mobile-width-96px {
    width: 96px;
  }
}
.smb-table-content-body-row-item.col-width-97 {
  width: 97%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-97 {
    width: 97%;
  }
  .smb-table-content-body-row-item.mobile-width-97px {
    width: 97px;
  }
}
.smb-table-content-body-row-item.col-width-98 {
  width: 98%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-98 {
    width: 98%;
  }
  .smb-table-content-body-row-item.mobile-width-98px {
    width: 98px;
  }
}
.smb-table-content-body-row-item.col-width-99 {
  width: 99%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-99 {
    width: 99%;
  }
  .smb-table-content-body-row-item.mobile-width-99px {
    width: 99px;
  }
}
.smb-table-content-body-row-item.col-width-100 {
  width: 100%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-100 {
    width: 100%;
  }
  .smb-table-content-body-row-item.mobile-width-100px {
    width: 100px;
  }
}
.smb-table-content-body-row-item.col-width-101 {
  width: 101%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-101 {
    width: 101%;
  }
  .smb-table-content-body-row-item.mobile-width-101px {
    width: 101px;
  }
}
.smb-table-content-body-row-item.col-width-102 {
  width: 102%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-102 {
    width: 102%;
  }
  .smb-table-content-body-row-item.mobile-width-102px {
    width: 102px;
  }
}
.smb-table-content-body-row-item.col-width-103 {
  width: 103%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-103 {
    width: 103%;
  }
  .smb-table-content-body-row-item.mobile-width-103px {
    width: 103px;
  }
}
.smb-table-content-body-row-item.col-width-104 {
  width: 104%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-104 {
    width: 104%;
  }
  .smb-table-content-body-row-item.mobile-width-104px {
    width: 104px;
  }
}
.smb-table-content-body-row-item.col-width-105 {
  width: 105%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-105 {
    width: 105%;
  }
  .smb-table-content-body-row-item.mobile-width-105px {
    width: 105px;
  }
}
.smb-table-content-body-row-item.col-width-106 {
  width: 106%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-106 {
    width: 106%;
  }
  .smb-table-content-body-row-item.mobile-width-106px {
    width: 106px;
  }
}
.smb-table-content-body-row-item.col-width-107 {
  width: 107%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-107 {
    width: 107%;
  }
  .smb-table-content-body-row-item.mobile-width-107px {
    width: 107px;
  }
}
.smb-table-content-body-row-item.col-width-108 {
  width: 108%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-108 {
    width: 108%;
  }
  .smb-table-content-body-row-item.mobile-width-108px {
    width: 108px;
  }
}
.smb-table-content-body-row-item.col-width-109 {
  width: 109%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-109 {
    width: 109%;
  }
  .smb-table-content-body-row-item.mobile-width-109px {
    width: 109px;
  }
}
.smb-table-content-body-row-item.col-width-110 {
  width: 110%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-110 {
    width: 110%;
  }
  .smb-table-content-body-row-item.mobile-width-110px {
    width: 110px;
  }
}
.smb-table-content-body-row-item.col-width-111 {
  width: 111%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-111 {
    width: 111%;
  }
  .smb-table-content-body-row-item.mobile-width-111px {
    width: 111px;
  }
}
.smb-table-content-body-row-item.col-width-112 {
  width: 112%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-112 {
    width: 112%;
  }
  .smb-table-content-body-row-item.mobile-width-112px {
    width: 112px;
  }
}
.smb-table-content-body-row-item.col-width-113 {
  width: 113%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-113 {
    width: 113%;
  }
  .smb-table-content-body-row-item.mobile-width-113px {
    width: 113px;
  }
}
.smb-table-content-body-row-item.col-width-114 {
  width: 114%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-114 {
    width: 114%;
  }
  .smb-table-content-body-row-item.mobile-width-114px {
    width: 114px;
  }
}
.smb-table-content-body-row-item.col-width-115 {
  width: 115%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-115 {
    width: 115%;
  }
  .smb-table-content-body-row-item.mobile-width-115px {
    width: 115px;
  }
}
.smb-table-content-body-row-item.col-width-116 {
  width: 116%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-116 {
    width: 116%;
  }
  .smb-table-content-body-row-item.mobile-width-116px {
    width: 116px;
  }
}
.smb-table-content-body-row-item.col-width-117 {
  width: 117%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-117 {
    width: 117%;
  }
  .smb-table-content-body-row-item.mobile-width-117px {
    width: 117px;
  }
}
.smb-table-content-body-row-item.col-width-118 {
  width: 118%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-118 {
    width: 118%;
  }
  .smb-table-content-body-row-item.mobile-width-118px {
    width: 118px;
  }
}
.smb-table-content-body-row-item.col-width-119 {
  width: 119%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-119 {
    width: 119%;
  }
  .smb-table-content-body-row-item.mobile-width-119px {
    width: 119px;
  }
}
.smb-table-content-body-row-item.col-width-120 {
  width: 120%;
}
@media (max-width: 576px) {
  .smb-table-content-body-row-item.mobile-width-120 {
    width: 120%;
  }
  .smb-table-content-body-row-item.mobile-width-120px {
    width: 120px;
  }
}
.smb-table-content-body-row-item.width-1 {
  width: 1px;
}
.smb-table-content-body-row-item.width-2 {
  width: 2px;
}
.smb-table-content-body-row-item.width-3 {
  width: 3px;
}
.smb-table-content-body-row-item.width-4 {
  width: 4px;
}
.smb-table-content-body-row-item.width-5 {
  width: 5px;
}
.smb-table-content-body-row-item.width-6 {
  width: 6px;
}
.smb-table-content-body-row-item.width-7 {
  width: 7px;
}
.smb-table-content-body-row-item.width-8 {
  width: 8px;
}
.smb-table-content-body-row-item.width-9 {
  width: 9px;
}
.smb-table-content-body-row-item.width-10 {
  width: 10px;
}
.smb-table-content-body-row-item.width-11 {
  width: 11px;
}
.smb-table-content-body-row-item.width-12 {
  width: 12px;
}
.smb-table-content-body-row-item.width-13 {
  width: 13px;
}
.smb-table-content-body-row-item.width-14 {
  width: 14px;
}
.smb-table-content-body-row-item.width-15 {
  width: 15px;
}
.smb-table-content-body-row-item.width-16 {
  width: 16px;
}
.smb-table-content-body-row-item.width-17 {
  width: 17px;
}
.smb-table-content-body-row-item.width-18 {
  width: 18px;
}
.smb-table-content-body-row-item.width-19 {
  width: 19px;
}
.smb-table-content-body-row-item.width-20 {
  width: 20px;
}
.smb-table-content-body-row-item.width-21 {
  width: 21px;
}
.smb-table-content-body-row-item.width-22 {
  width: 22px;
}
.smb-table-content-body-row-item.width-23 {
  width: 23px;
}
.smb-table-content-body-row-item.width-24 {
  width: 24px;
}
.smb-table-content-body-row-item.width-25 {
  width: 25px;
}
.smb-table-content-body-row-item.width-26 {
  width: 26px;
}
.smb-table-content-body-row-item.width-27 {
  width: 27px;
}
.smb-table-content-body-row-item.width-28 {
  width: 28px;
}
.smb-table-content-body-row-item.width-29 {
  width: 29px;
}
.smb-table-content-body-row-item.width-30 {
  width: 30px;
}
.smb-table-content-body-row-item.width-31 {
  width: 31px;
}
.smb-table-content-body-row-item.width-32 {
  width: 32px;
}
.smb-table-content-body-row-item.width-33 {
  width: 33px;
}
.smb-table-content-body-row-item.width-34 {
  width: 34px;
}
.smb-table-content-body-row-item.width-35 {
  width: 35px;
}
.smb-table-content-body-row-item.width-36 {
  width: 36px;
}
.smb-table-content-body-row-item.width-37 {
  width: 37px;
}
.smb-table-content-body-row-item.width-38 {
  width: 38px;
}
.smb-table-content-body-row-item.width-39 {
  width: 39px;
}
.smb-table-content-body-row-item.width-40 {
  width: 40px;
}
.smb-table-content-body-row-item.width-41 {
  width: 41px;
}
.smb-table-content-body-row-item.width-42 {
  width: 42px;
}
.smb-table-content-body-row-item.width-43 {
  width: 43px;
}
.smb-table-content-body-row-item.width-44 {
  width: 44px;
}
.smb-table-content-body-row-item.width-45 {
  width: 45px;
}
.smb-table-content-body-row-item.width-46 {
  width: 46px;
}
.smb-table-content-body-row-item.width-47 {
  width: 47px;
}
.smb-table-content-body-row-item.width-48 {
  width: 48px;
}
.smb-table-content-body-row-item.width-49 {
  width: 49px;
}
.smb-table-content-body-row-item.width-50 {
  width: 50px;
}
.smb-table-content-body-row-item.width-51 {
  width: 51px;
}
.smb-table-content-body-row-item.width-52 {
  width: 52px;
}
.smb-table-content-body-row-item.width-53 {
  width: 53px;
}
.smb-table-content-body-row-item.width-54 {
  width: 54px;
}
.smb-table-content-body-row-item.width-55 {
  width: 55px;
}
.smb-table-content-body-row-item.width-56 {
  width: 56px;
}
.smb-table-content-body-row-item.width-57 {
  width: 57px;
}
.smb-table-content-body-row-item.width-58 {
  width: 58px;
}
.smb-table-content-body-row-item.width-59 {
  width: 59px;
}
.smb-table-content-body-row-item.width-60 {
  width: 60px;
}
.smb-table-content-body-row-item.width-61 {
  width: 61px;
}
.smb-table-content-body-row-item.width-62 {
  width: 62px;
}
.smb-table-content-body-row-item.width-63 {
  width: 63px;
}
.smb-table-content-body-row-item.width-64 {
  width: 64px;
}
.smb-table-content-body-row-item.width-65 {
  width: 65px;
}
.smb-table-content-body-row-item.width-66 {
  width: 66px;
}
.smb-table-content-body-row-item.width-67 {
  width: 67px;
}
.smb-table-content-body-row-item.width-68 {
  width: 68px;
}
.smb-table-content-body-row-item.width-69 {
  width: 69px;
}
.smb-table-content-body-row-item.width-70 {
  width: 70px;
}
.smb-table-content-body-row-item.width-71 {
  width: 71px;
}
.smb-table-content-body-row-item.width-72 {
  width: 72px;
}
.smb-table-content-body-row-item.width-73 {
  width: 73px;
}
.smb-table-content-body-row-item.width-74 {
  width: 74px;
}
.smb-table-content-body-row-item.width-75 {
  width: 75px;
}
.smb-table-content-body-row-item.width-76 {
  width: 76px;
}
.smb-table-content-body-row-item.width-77 {
  width: 77px;
}
.smb-table-content-body-row-item.width-78 {
  width: 78px;
}
.smb-table-content-body-row-item.width-79 {
  width: 79px;
}
.smb-table-content-body-row-item.width-80 {
  width: 80px;
}
.smb-table-content-body-row-item.width-81 {
  width: 81px;
}
.smb-table-content-body-row-item.width-82 {
  width: 82px;
}
.smb-table-content-body-row-item.width-83 {
  width: 83px;
}
.smb-table-content-body-row-item.width-84 {
  width: 84px;
}
.smb-table-content-body-row-item.width-85 {
  width: 85px;
}
.smb-table-content-body-row-item.width-86 {
  width: 86px;
}
.smb-table-content-body-row-item.width-87 {
  width: 87px;
}
.smb-table-content-body-row-item.width-88 {
  width: 88px;
}
.smb-table-content-body-row-item.width-89 {
  width: 89px;
}
.smb-table-content-body-row-item.width-90 {
  width: 90px;
}
.smb-table-content-body-row-item.width-91 {
  width: 91px;
}
.smb-table-content-body-row-item.width-92 {
  width: 92px;
}
.smb-table-content-body-row-item.width-93 {
  width: 93px;
}
.smb-table-content-body-row-item.width-94 {
  width: 94px;
}
.smb-table-content-body-row-item.width-95 {
  width: 95px;
}
.smb-table-content-body-row-item.width-96 {
  width: 96px;
}
.smb-table-content-body-row-item.width-97 {
  width: 97px;
}
.smb-table-content-body-row-item.width-98 {
  width: 98px;
}
.smb-table-content-body-row-item.width-99 {
  width: 99px;
}
.smb-table-content-body-row-item.width-100 {
  width: 100px;
}
.smb-table-content-body-row-item.width-101 {
  width: 101px;
}
.smb-table-content-body-row-item.width-102 {
  width: 102px;
}
.smb-table-content-body-row-item.width-103 {
  width: 103px;
}
.smb-table-content-body-row-item.width-104 {
  width: 104px;
}
.smb-table-content-body-row-item.width-105 {
  width: 105px;
}
.smb-table-content-body-row-item.width-106 {
  width: 106px;
}
.smb-table-content-body-row-item.width-107 {
  width: 107px;
}
.smb-table-content-body-row-item.width-108 {
  width: 108px;
}
.smb-table-content-body-row-item.width-109 {
  width: 109px;
}
.smb-table-content-body-row-item.width-110 {
  width: 110px;
}
.smb-table-content-body-row-item.width-111 {
  width: 111px;
}
.smb-table-content-body-row-item.width-112 {
  width: 112px;
}
.smb-table-content-body-row-item.width-113 {
  width: 113px;
}
.smb-table-content-body-row-item.width-114 {
  width: 114px;
}
.smb-table-content-body-row-item.width-115 {
  width: 115px;
}
.smb-table-content-body-row-item.width-116 {
  width: 116px;
}
.smb-table-content-body-row-item.width-117 {
  width: 117px;
}
.smb-table-content-body-row-item.width-118 {
  width: 118px;
}
.smb-table-content-body-row-item.width-119 {
  width: 119px;
}
.smb-table-content-body-row-item.width-120 {
  width: 120px;
}
.smb-table-content-body-row-item.width-121 {
  width: 121px;
}
.smb-table-content-body-row-item.width-122 {
  width: 122px;
}
.smb-table-content-body-row-item.width-123 {
  width: 123px;
}
.smb-table-content-body-row-item.width-124 {
  width: 124px;
}
.smb-table-content-body-row-item.width-125 {
  width: 125px;
}
.smb-table-content-body-row-item.width-126 {
  width: 126px;
}
.smb-table-content-body-row-item.width-127 {
  width: 127px;
}
.smb-table-content-body-row-item.width-128 {
  width: 128px;
}
.smb-table-content-body-row-item.width-129 {
  width: 129px;
}
.smb-table-content-body-row-item.width-130 {
  width: 130px;
}
.smb-table-content-body-row-item.width-131 {
  width: 131px;
}
.smb-table-content-body-row-item.width-132 {
  width: 132px;
}
.smb-table-content-body-row-item.width-133 {
  width: 133px;
}
.smb-table-content-body-row-item.width-134 {
  width: 134px;
}
.smb-table-content-body-row-item.width-135 {
  width: 135px;
}
.smb-table-content-body-row-item.width-136 {
  width: 136px;
}
.smb-table-content-body-row-item.width-137 {
  width: 137px;
}
.smb-table-content-body-row-item.width-138 {
  width: 138px;
}
.smb-table-content-body-row-item.width-139 {
  width: 139px;
}
.smb-table-content-body-row-item.width-140 {
  width: 140px;
}
.smb-table-content-body-row-item.width-141 {
  width: 141px;
}
.smb-table-content-body-row-item.width-142 {
  width: 142px;
}
.smb-table-content-body-row-item.width-143 {
  width: 143px;
}
.smb-table-content-body-row-item.width-144 {
  width: 144px;
}
.smb-table-content-body-row-item.width-145 {
  width: 145px;
}
.smb-table-content-body-row-item.width-146 {
  width: 146px;
}
.smb-table-content-body-row-item.width-147 {
  width: 147px;
}
.smb-table-content-body-row-item.width-148 {
  width: 148px;
}
.smb-table-content-body-row-item.width-149 {
  width: 149px;
}
.smb-table-content-body-row-item.width-150 {
  width: 150px;
}
.smb-table-content-body-row-item.width-151 {
  width: 151px;
}
.smb-table-content-body-row-item.width-152 {
  width: 152px;
}
.smb-table-content-body-row-item.width-153 {
  width: 153px;
}
.smb-table-content-body-row-item.width-154 {
  width: 154px;
}
.smb-table-content-body-row-item.width-155 {
  width: 155px;
}
.smb-table-content-body-row-item.width-156 {
  width: 156px;
}
.smb-table-content-body-row-item.width-157 {
  width: 157px;
}
.smb-table-content-body-row-item.width-158 {
  width: 158px;
}
.smb-table-content-body-row-item.width-159 {
  width: 159px;
}
.smb-table-content-body-row-item.width-160 {
  width: 160px;
}
.smb-table-content-body-row-item.width-161 {
  width: 161px;
}
.smb-table-content-body-row-item.width-162 {
  width: 162px;
}
.smb-table-content-body-row-item.width-163 {
  width: 163px;
}
.smb-table-content-body-row-item.width-164 {
  width: 164px;
}
.smb-table-content-body-row-item.width-165 {
  width: 165px;
}
.smb-table-content-body-row-item.width-166 {
  width: 166px;
}
.smb-table-content-body-row-item.width-167 {
  width: 167px;
}
.smb-table-content-body-row-item.width-168 {
  width: 168px;
}
.smb-table-content-body-row-item.width-169 {
  width: 169px;
}
.smb-table-content-body-row-item.width-170 {
  width: 170px;
}
.smb-table-content-body-row-item.width-171 {
  width: 171px;
}
.smb-table-content-body-row-item.width-172 {
  width: 172px;
}
.smb-table-content-body-row-item.width-173 {
  width: 173px;
}
.smb-table-content-body-row-item.width-174 {
  width: 174px;
}
.smb-table-content-body-row-item.width-175 {
  width: 175px;
}
.smb-table-content-body-row-item.width-176 {
  width: 176px;
}
.smb-table-content-body-row-item.width-177 {
  width: 177px;
}
.smb-table-content-body-row-item.width-178 {
  width: 178px;
}
.smb-table-content-body-row-item.width-179 {
  width: 179px;
}
.smb-table-content-body-row-item.width-180 {
  width: 180px;
}
.smb-table-content-body-row-item.width-181 {
  width: 181px;
}
.smb-table-content-body-row-item.width-182 {
  width: 182px;
}
.smb-table-content-body-row-item.width-183 {
  width: 183px;
}
.smb-table-content-body-row-item.width-184 {
  width: 184px;
}
.smb-table-content-body-row-item.width-185 {
  width: 185px;
}
.smb-table-content-body-row-item.width-186 {
  width: 186px;
}
.smb-table-content-body-row-item.width-187 {
  width: 187px;
}
.smb-table-content-body-row-item.width-188 {
  width: 188px;
}
.smb-table-content-body-row-item.width-189 {
  width: 189px;
}
.smb-table-content-body-row-item.width-190 {
  width: 190px;
}
.smb-table-content-body-row-item.width-191 {
  width: 191px;
}
.smb-table-content-body-row-item.width-192 {
  width: 192px;
}
.smb-table-content-body-row-item.width-193 {
  width: 193px;
}
.smb-table-content-body-row-item.width-194 {
  width: 194px;
}
.smb-table-content-body-row-item.width-195 {
  width: 195px;
}
.smb-table-content-body-row-item.width-196 {
  width: 196px;
}
.smb-table-content-body-row-item.width-197 {
  width: 197px;
}
.smb-table-content-body-row-item.width-198 {
  width: 198px;
}
.smb-table-content-body-row-item.width-199 {
  width: 199px;
}
.smb-table-content-body-row-item.width-200 {
  width: 200px;
}
.smb-table-content-body-row-item .smb-list-tag {
  margin-right: 4px;
}
.smb-table-content-body-row-item i.smb-icon-star {
  font-weight: 400;
  color: #666;
  cursor: pointer;
}
.smb-table-content-body-row-item i.smb-icon-star-full,
.smb-table-content-body-row-item i.collected {
  font-weight: 600;
  color: #e5a82e;
  cursor: pointer;
}
.smb-table-content-body-row.table-row-emphasized {
  font-weight: 600;
  color: #fff;
}
.smb-table-content-body-row:hover {
  background-color: #222426;
}
.smb-table-content-body-row:hover .smb-table-content-body-row-item {
  background-color: #222426;
}
.smb-table-content-body-row.ui-sortable-helper {
  background: #ffffff;
  box-shadow: -5px 0px 10px rgba(122, 133, 153, 0.2);
}
.smb-table-content-body-row-subtable {
  background-color: #222426;
}
.smb-table-content-body-row-subtable .smb-table-content-header {
  border-top: 0;
  font-weight: 400;
  background-color: transparent;
}
.smb-table-content-body-row-subtable .smb-table-content-header-item.smb-sub-table-tree {
  padding: 16px;
  width: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.smb-table-content-body-row-subtable .smb-table-content-header-item.smb-sub-table-tree::before {
  content: " ";
  background-color: #666;
  position: absolute;
  width: 1px;
  height: 40px;
  top: 0;
  left: 19px;
}
.smb-table-content-body-row-subtable .smb-table-content-body-row {
  /* 展开最后一行 */
}
.smb-table-content-body-row-subtable .smb-table-content-body-row .smb-table-content-body-row-item.sub-row-item-tree {
  padding: 16px;
  color: #666;
  width: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.smb-table-content-body-row-subtable .smb-table-content-body-row .smb-table-content-body-row-item.sub-row-item-tree::before {
  content: " ";
  background-color: #666;
  position: absolute;
  width: 1px;
  height: 40px;
  top: 0;
  left: 19px;
}
.smb-table-content-body-row-subtable .smb-table-content-body-row .smb-table-content-body-row-item.row-item-more {
  padding: 1px 12px;
}
.smb-table-content-body-row-subtable .smb-table-content-body-row:nth-last-child(1) .sub-row-item-tree::before {
  content: "";
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="21" viewBox="0 0 9 21" fill="none"><path d="M0.500001 -3.49692e-07L0.5 16C0.5 18.2091 2.29086 20 4.5 20L8.5 20" stroke="%23CCCCCC" stroke-linecap="square" stroke-linejoin="round"/></svg>') no-repeat;
  position: absolute;
  width: 9px;
  height: 21px;
  top: -1px;
  left: 19px;
}
.smb-table-no-data {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
}
.smb-table-no-data-icon {
  width: 80px;
  height: 80px;
}
.smb-table-no-data-text {
  color: #999;
  text-align: center;
  font-size: 12px;
}
.smb-table-no-data-text .smb-link, .smb-table-no-data-text .paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .el-button, .paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .smb-table-no-data-text .el-button {
  font-size: inherit;
}
.smb-table-no-more-data {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  color: #999;
  text-align: center;
  font-size: 12px;
}
@media (max-width: 768px) {
  .smb-table {
    max-height: 300px;
    overflow: auto;
  }
  .smb-table-content {
    min-width: 992px;
    min-height: 100%;
  }
  .smb-table-content-left-column-wrapper {
    position: relative;
  }
  .smb-table-content-left-column-wrapper::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 8px;
    top: 0;
    right: -8px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(122, 133, 153, 0.05), rgba(0, 0, 0, 0));
    opacity: 0;
    -moz-transition: opacity 0.1s ease-in;
    -webkit-transition: opacity 0.1s ease-in;
    -o-transition: opacity 0.1s ease-in;
    transition: opacity 0.1s ease-in;
  }
  .smb-table-content-left-column-wrapper.smb-table-scroll-shadow-switch::after {
    opacity: 1;
  }
  .smb-table-content-header-item.table-action {
    position: relative;
    position: sticky;
    left: -1px;
    z-index: 2;
    right: -1px;
  }
  .smb-table-content-header-item.table-action::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 10px;
    top: 0;
    left: -8px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(122, 133, 153, 0.05), rgba(0, 0, 0, 0.05));
    opacity: 1;
    -moz-transition: opacity 0.1s ease-in;
    -webkit-transition: opacity 0.1s ease-in;
    -o-transition: opacity 0.1s ease-in;
    transition: opacity 0.1s ease-in;
  }
  .smb-table-content-header-item.table-action.smb-table-scroll-shadow-switch::before {
    opacity: 0;
  }
  .smb-table-content-body-row-item.row-item-more {
    position: relative;
    position: sticky;
    left: -1px;
    z-index: 2;
    right: -1px;
  }
  .smb-table-content-body-row-item.row-item-more::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 10px;
    top: 0;
    left: -8px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(122, 133, 153, 0.05), rgba(0, 0, 0, 0.05));
    opacity: 1;
    -moz-transition: opacity 0.1s ease-in;
    -webkit-transition: opacity 0.1s ease-in;
    -o-transition: opacity 0.1s ease-in;
    transition: opacity 0.1s ease-in;
  }
  .smb-table-content-body-row-item.row-item-more.smb-table-scroll-shadow-switch::before {
    opacity: 0;
  }
  .smb-table-content-body-row-item.row-item-more.more-btn-active {
    z-index: 3;
  }
}

.smb-steps-item {
  background-color: #222426;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
}
.smb-steps-item.active {
  background-color: #408cff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.smb-steps-item.disabled {
  color: #999;
  cursor: default;
}

.smb-steps {
  padding: 0.75rem 0;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  flex-shrink: 0;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.smb-steps::-webkit-scrollbar {
  display: none;
}
.smb-steps .smb-steps-item {
  flex-shrink: 0;
  text-decoration: none;
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
}
.smb-steps .smb-steps-item:not(.active):not(.disabled) {
  color: #333;
}
.smb-steps .smb-steps-item:not(:last-child) {
  margin-right: 1.25rem;
  position: relative;
}
.smb-steps .smb-steps-item:not(:last-child)::after {
  position: absolute;
  top: 11px;
  left: 100%;
  display: block;
  width: 1.25rem;
  height: 8px;
  background: #222426;
  cursor: default;
  content: "";
}
@media (max-width: 767.98px) {
  .smb-steps .smb-steps-item {
    padding: 8px 12px;
    font-size: 12px;
  }
  .smb-steps .smb-steps-item:not(:last-child) {
    margin-right: 18px;
  }
  .smb-steps .smb-steps-item:not(:last-child)::after {
    width: 18px;
  }
}

.smb-job-position-template-item {
  width: 285px;
  height: 154px;
  background: #222426;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
  border-radius: 4px;
}
.smb-job-position-template-item:hover {
  background: rgba(64, 140, 255, 0.05);
  border-color: #408cff;
  transition: 0.15s;
  box-shadow: 0 10px 30px rgba(122, 133, 153, 0.4);
}
.smb-job-position-template-item:hover .smb-job-position-template-item-header-checkbox {
  border: 1px solid #408cff;
}
.smb-job-position-template-item:hover .hidden {
  border: unset;
}
.smb-job-position-template-item:hover .smb-job-position-template-item-header-lock {
  background: rgba(64, 140, 255, 0.1);
}
.smb-job-position-template-item:hover .smb-job-position-template-item-header-lock i {
  color: #408cff;
}
.smb-job-position-template-item-header {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  position: relative;
  overflow: hidden;
}
.smb-job-position-template-item-header .tag-list .smb-list-tag + .smb-list-tag {
  margin-left: 8px;
}
.smb-job-position-template-item-header-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid #666;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}
.smb-job-position-template-item-header-checkbox i {
  display: none;
  font-size: 28px;
  color: #408cff;
}
.smb-job-position-template-item-header-checkbox.hidden {
  border: unset;
}
.smb-job-position-template-item-header-checkbox.hidden i {
  display: unset;
}
.smb-job-position-template-item-header-lock {
  position: absolute;
  top: -29px;
  right: -29px;
  width: 58px;
  height: 58px;
  transform: rotate(45deg);
  background-color: rgba(255, 255, 255, 0.05);
}
.smb-job-position-template-item-header-lock i {
  position: absolute;
  bottom: 6px;
  left: 21px;
  transform: rotate(-45deg);
  color: #b8becc;
}
.smb-job-position-template-item-body {
  flex: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 20px;
}
.smb-job-position-template-item-body .exam-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.smb-job-position-template-item-body .exam-info {
  display: flex;
  position: relative;
  flex: auto;
}
.smb-job-position-template-item-body .exam-info-item {
  position: relative;
}
.smb-job-position-template-item-body .exam-info-item span {
  font-size: 12px;
  line-height: 17px;
  color: #ccc;
}
.smb-job-position-template-item-body .exam-info-item span:not(:first-child) {
  padding-left: 4px;
}
.smb-job-position-template-item-body .exam-info-item:not(:first-child) {
  margin-left: 16px;
}
.smb-job-position-template-item-body .exam-info-item:not(:last-child):after {
  content: " ";
  position: absolute;
  top: 10px;
  right: -8px;
  height: 8px;
  width: 1px;
  background-color: #666;
}
.smb-job-position-template-item-body .exam-info:after {
  content: " ";
  position: absolute;
  height: 1px;
  width: 100%;
  background: #3a3c40;
  left: 0;
  bottom: -8px;
}
.smb-job-position-template-item-footer {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
}
.smb-job-position-template-item-footer .job-position-title {
  font-weight: normal;
  font-size: 12px;
  line-height: 17px;
}
.smb-job-position-template-item-footer .details {
  display: flex;
  align-items: center;
  font-size: 12px;
  cursor: pointer;
}

.smb-slider.ui-widget.ui-widget-content {
  border: unset;
}
.smb-slider.ui-slider {
  height: 8.57px;
  background-color: #f4f4f4;
  border-radius: 5px;
}
.smb-slider.ui-slider .ui-slider-handle {
  width: max-content;
  height: 21px;
  top: -0.6em;
  font-size: 12px;
  color: #fff;
  padding: 2px 4px;
  background-color: #4fbdfb;
  border-radius: 5px;
  border: none;
  text-align: center;
}
.smb-slider.ui-slider .ui-slider-handle:focus {
  outline: unset;
}
.smb-slider .ui-slider-range {
  background-color: #4fbdfb;
}

.smb-slider-2 {
  /* 取消默认样式 */
}
.smb-slider-2 input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  margin: 0;
  /* 背景 */
  /* 滑块 */
}
.smb-slider-2 input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(64, 140, 255, 0.15);
  height: 6px;
  border-radius: 8px;
}
.smb-slider-2 input[type=range]::-moz-range-track {
  background-color: rgba(64, 140, 255, 0.15);
  height: 6px;
  border-radius: 8px;
}
.smb-slider-2 input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 20px;
  background-color: #408cff;
  border: 5px solid #ffffff;
  border-radius: 10px;
  cursor: pointer;
  margin: -7px 0 0 -2px;
  box-shadow: 0px 0px 4px rgba(64, 140, 255, 0.2509803922);
}
.smb-slider-2 input[type=range]::-webkit-slider-thumb:hover {
  transition: 0.15s;
  box-shadow: 0px 0px 4px rgba(31, 33, 37, 0.5019607843);
}
.smb-slider-2 input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 20px;
  background-color: #408cff;
  border: 5px solid #ffffff;
  border-radius: 10px;
  cursor: pointer;
  margin: -7px 0 0 -2px;
  box-shadow: 0px 0px 4px rgba(64, 140, 255, 0.2509803922);
}
.smb-slider-2 input[type=range]::-moz-range-thumb:hover {
  transition: 0.15s;
  box-shadow: 0px 0px 4px rgba(64, 140, 255, 0.5019607843);
}
.smb-slider-2 .range-points {
  position: relative;
  height: 0px;
  display: flex;
  justify-content: space-between;
  margin: -8.5px 8px 0px 4px;
  margin-top: -9.5px;
}
.smb-slider-2 .range-points .range-point {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  transition: 0.15s;
  border: 1px solid transparent;
  cursor: pointer;
}
.smb-slider-2 .range-points .range-point::before {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  border-radius: 50%;
}
.smb-slider-2 .range-points .active {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border: 2px solid #408cff;
  border-radius: 6px;
}
.smb-slider-2 .range-points .hidden {
  display: none;
}

.smb-sql-result {
  margin-left: 22px;
  max-height: 175px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: auto;
  overflow: overlay;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: none;
  border-right: none;
}
.smb-sql-result-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.smb-sql-result-table td {
  text-align: left;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-style: none solid solid none;
  color: #ffffff;
  padding: 4px 8px;
  max-width: 200px;
  max-height: 200px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.smb-sql-result-table-head {
  background-color: rgba(255, 255, 255, 0.05);
}
.smb-sql-result-table-head td {
  font-weight: 600;
  color: #999;
}
.smb-sql-result-table .tr-row-0 {
  border-top: none;
}
.smb-sql-result-table tr:first-child td {
  border-top-style: none;
}
.smb-sql-result-table tr:last-child td {
  border-bottom-style: none;
}
.smb-sql-result-table tr td:first-child {
  border-left-style: solid;
}

.general-question-index {
  width: 100%;
}

.smb-search-component {
  width: 100%;
  position: relative;
  margin-bottom: 12px;
}
.smb-search-component:last-child {
  margin-bottom: 0;
}
.smb-search-component-item {
  white-space: nowrap;
  padding: 4px 8px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
}
.smb-search-component-item:not(.disabled):hover, .smb-search-component-item.active {
  color: #408cff;
}
.smb-search-component-item.active {
  background-color: rgba(64, 140, 255, 0.1);
  border-radius: 4px;
}
.smb-search-component-item.disabled {
  background-color: #2e3033;
  color: #b8becc;
  cursor: not-allowed;
}
.smb-search-component-visible {
  width: 100%;
  overflow: hidden;
}
.smb-search-component-visible-items {
  flex-wrap: wrap;
  height: 29px;
  overflow: hidden;
}
.smb-search-component-visible-items .smb-search-component-item + .smb-search-component-item {
  margin-left: 8px;
}
.smb-search-component-visible-items .smb-search-component-catalog {
  width: 80px;
  min-width: 80px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  color: #666;
}
.smb-search-component-visible .smb-search-component-expand {
  flex-wrap: nowrap;
  cursor: pointer;
  font-weight: 400;
  user-select: none;
  color: #408cff;
  white-space: nowrap;
  font-size: 14px;
}
.smb-search-component-panel {
  position: absolute;
  left: 0;
  width: 100%;
  top: 36px;
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: max-height 0.15s ease-in-out;
  z-index: 10;
}
.smb-search-component-panel.show {
  max-height: 240px;
  z-index: 11;
}
.smb-search-component-panel__header {
  height: 36px;
  padding: 0 20px;
  border-bottom: 1px solid #f0f1f2;
}
.smb-search-component-panel__title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.smb-search-component-panel__body {
  padding: 12px 20px;
  max-height: 200px;
  overflow-y: auto;
  -webkit-overflow-scrolling: auto;
}
.smb-search-component-panel__body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
  cursor: pointer;
}
.smb-search-component-panel__body::-webkit-scrollbar-thumb {
  background-color: rgba(26, 26, 26, 0.2);
  border-radius: 2px;
}
.smb-search-component-panel__body::-webkit-scrollbar-thumb:vertical {
  background-color: rgba(26, 26, 26, 0.2);
  border-radius: 2px;
}
.smb-search-component-panel__body::-webkit-scrollbar-thumb:vertical:active {
  background-color: rgba(26, 26, 26, 0.2);
  border-radius: 2px;
}
.smb-search-component-panel__body::-webkit-scrollbar-corner {
  background-color: transparent;
}
.smb-search-component-panel__body::-webkit-scrollbar-thumb:horizontal {
  background-color: rgba(26, 26, 26, 0.2);
  border-radius: 2px;
}
.smb-search-component-panel__body::-webkit-scrollbar-thumb:horizontal:active {
  background-color: rgba(26, 26, 26, 0.2);
  border-radius: 2px;
}
.smb-search-component-panel__catalog-item {
  align-items: flex-start;
  padding-top: 8px;
}
.smb-search-component-panel__catalog-item .smb-search-component-items {
  flex: auto;
  flex-wrap: wrap;
  gap: 8px;
}
.smb-search-component-panel__catalog-item .smb-search-component-items .smb-search-component-item + .smb-search-component-item {
  margin-left: 0;
}
.smb-search-component-panel__catalog-item:not(:last-child) .smb-search-component-items {
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f1f2;
}
.smb-search-component-panel__catalog-name {
  width: 80px;
  min-width: 80px;
  white-space: nowrap;
  padding: 4px 8px 4px 0;
  color: #666666;
  font-size: 12px;
}

.selected-filter-items {
  width: 100%;
  font-size: 14px;
  padding: 12px 0;
  border-top: 1px solid #f0f1f2;
}
.selected-filter-items__name {
  width: 80px;
  min-width: 80px;
}
.selected-filter-items__content {
  flex-wrap: wrap;
  gap: 12px;
}
.selected-filter-items__content .selected-filter-item {
  padding: 4px 8px;
  color: #408cff;
  background: rgba(64, 140, 255, 0.1);
  border-radius: 4px;
}
.selected-filter-items__content .selected-filter-item__name {
  white-space: nowrap;
}
.selected-filter-items__content .selected-filter-item .close-icon {
  margin-left: 4px;
  cursor: pointer;
}
.selected-filter-items__content .selected-filter-item .close-icon i.smb-icon-close {
  font-size: 12px;
}
.selected-filter-items__content .selected-filter-item .close-icon:hover {
  transform: scale(1.2);
  transition: all 0.1s ease-in-out;
}

.smb-search-component-input-wrap {
  width: calc(100% + 20px);
  justify-content: space-between;
  border-top: 1px solid #f0f1f2;
  margin-left: -20px;
  padding: 8px 0 0 20px;
}
.smb-search-component-input-wrap .smb-search-component__check-group {
  row-gap: 12px;
}
.smb-search-component-input-wrap .smb-search-component__check-group .divide-line {
  margin: auto 16px;
  height: 8px;
  border-left: 1px solid #cccccc;
  border-radius: 1px;
}
.smb-search-component-input-wrap .smb-search-component__check-group .el-checkbox.check-box {
  margin: 0;
  padding: 4px 8px;
  line-height: 20px;
}
.smb-search-component-input-wrap .smb-search-component__check-group .el-checkbox.check-box:not(.is-checked) .is-focus .el-checkbox__inner {
  border-color: #dcdfe6;
}
.smb-search-component-input-wrap .smb-search-component__check-group .el-checkbox.check-box:not(:first-child) {
  margin-left: 16px;
}
.smb-search-component-input-wrap .smb-search-component__check-group .el-checkbox.check-box i.smb-icon-tooltips {
  color: #999;
}
.smb-search-component-input-wrap .smb-search-component__check-group .el-checkbox.check-box .el-checkbox__label {
  display: inline-flex;
  align-items: center;
}
.smb-search-component-input-wrap .smb-search-component__check-group .el-checkbox.check-box .el-checkbox__label i,
.smb-search-component-input-wrap .smb-search-component__check-group .el-checkbox.check-box .el-checkbox__label img {
  margin-left: 4px;
}
.smb-search-component-input-wrap .smb-search-component__check-group .programming-priority {
  background: linear-gradient(265.67deg, #f4f8ff 7.03%, #d2e6ff 100%);
  border: 1px solid rgba(64, 140, 255, 0.1);
  padding: 3px 7px;
  border-radius: 4px;
  color: #408cff;
  font-weight: 600;
}
.smb-search-component-input-wrap .smb-search-component__input-group {
  line-height: 20px;
}
.smb-search-component-input-wrap .smb-search-component__input-group .el-input {
  min-width: 320px;
}
.smb-search-component-input-wrap .smb-search-component__input-group .el-input__inner {
  font-weight: 400;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  /* webkit */
  /* Mozilla Firefox 4 to 18 */
  /* Mozilla Firefox 19+ */
}
.smb-search-component-input-wrap .smb-search-component__input-group .el-input__inner:focus {
  border: 1px solid #408cff;
  box-shadow: 0px 0px 1px 2px rgba(64, 143, 255, 0.2);
  caret-color: #408cff;
}
.smb-search-component-input-wrap .smb-search-component__input-group .el-input__inner::-webkit-input-placeholder {
  color: #999;
}
.smb-search-component-input-wrap .smb-search-component__input-group .el-input__inner:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.smb-search-component-input-wrap .smb-search-component__input-group .el-input__inner::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.smb-search-component-input-wrap .smb-search-component__input-group .el-input__suffix {
  color: #b8becc;
}
.smb-search-component-input-wrap .smb-search-component__input-group .batch-actions-btn {
  margin-left: 8px;
}
.smb-search-component-input-wrap .smb-search-component__input-group .clear-all-filter {
  margin-left: 20px;
  font-weight: 400;
}
.smb-search-component-input-wrap .smb-search-component__input-group .clear-all-filter .el-link--inner {
  white-space: nowrap;
}

.smb-search-component__tooltip .v-popper__wrapper .v-popper__inner {
  background-color: #1a1a1a;
}
.smb-search-component__tooltip-wrap {
  max-width: 184px;
  font-size: 12px;
}
.smb-search-component__tooltip-wrap .smb-link, .smb-search-component__tooltip-wrap .paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .el-button, .paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .smb-search-component__tooltip-wrap .el-button {
  font-size: 12px;
}

@media (max-width: 1400px) {
  .smb-search-component-input-wrap {
    flex-wrap: wrap;
  }
  .smb-search-component-input-wrap .smb-search-component__input-group {
    margin-top: 12px;
  }
}
@media (max-width: 876px) {
  .smb-search-component-input-wrap {
    flex-wrap: wrap;
  }
  .smb-search-component-input-wrap .smb-search-component__check-group {
    flex-wrap: wrap;
  }
  .smb-search-component-input-wrap .smb-search-component__check-group .divide-line {
    display: none;
  }
  .smb-search-component-input-wrap .smb-search-component__check-group .check-group:not(:first-child) {
    margin-top: 0;
  }
  .smb-search-component-input-wrap .smb-search-component__check-group .el-checkbox.check-box:not(:first-child) {
    margin-left: unset;
  }
}
@media (max-width: 576px) {
  .smb-search-component-input-wrap {
    flex-wrap: wrap;
  }
  .smb-search-component-input-wrap .smb-search-component__check-group {
    flex-wrap: wrap;
  }
  .smb-search-component-input-wrap .smb-search-component__check-group .divide-line {
    display: none;
  }
  .smb-search-component-input-wrap .smb-search-component__check-group .el-checkbox.check-box:not(:first-child) {
    margin-left: unset;
  }
  .smb-search-component-input-wrap .smb-search-component__input-group {
    flex-wrap: wrap;
  }
  .smb-search-component-input-wrap .smb-search-component__input-group .batch-actions-btn {
    margin-left: 0;
    margin-top: 12px;
  }
  .smb-search-component-input-wrap .smb-search-component__input-group .clear-all-filter {
    margin-top: 12px;
  }
}
@media (max-width: 375px) {
  .smb-search-component__check-group {
    flex-wrap: wrap;
  }
  .smb-search-component__check-group .divide-line {
    display: none;
  }
  .smb-search-component__check-group .el-checkbox.check-box:not(:first-child) {
    margin-left: unset;
  }
}
.smb-text-lg {
  font-size: 16px;
}

.smb-text-md {
  font-size: 14px;
}

.smb-text-sm {
  font-size: 12px;
}

.smb-text-danger {
  color: #d9574c;
}

.smb-text-hint {
  color: #999;
}

.smb-rounded-2 {
  border-radius: 0.125rem;
}

.smb-rounded-t-2 {
  border-top-left-radius: 0.125rem;
  border-top-right-radius: 0.125rem;
}

.smb-rounded-b-2 {
  border-bottom-left-radius: 0.125rem;
  border-bottom-right-radius: 0.125rem;
}

.smb-rounded-l-2 {
  border-top-left-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
}

.smb-rounded-l-2 {
  border-top-right-radius: 0.125rem;
  border-bottom-right-radius: 0.125rem;
}

.smb-rounded-4 {
  border-radius: 0.25rem;
}

.smb-rounded-t-4 {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.smb-rounded-b-4 {
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.smb-rounded-l-4 {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.smb-rounded-l-4 {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.smb-rounded-8 {
  border-radius: 0.5rem;
}

.smb-rounded-t-8 {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.smb-rounded-b-8 {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.smb-rounded-l-8 {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.smb-rounded-l-8 {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.smb-rounded-12 {
  border-radius: 0.75rem;
}

.smb-rounded-t-12 {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.smb-rounded-b-12 {
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.smb-rounded-l-12 {
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}

.smb-rounded-l-12 {
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

/* 笔试板 Markdown 样式覆盖 */
.markdown-question {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  text-align: justify;
  word-wrap: break-word;
  max-height: 100%;
}
.markdown-question p img {
  display: block;
  margin: 12px 0;
}

.markdown-question .pl-c {
  color: #969896;
}

.markdown-question .pl-c1,
.markdown-question .pl-s .pl-v {
  color: #0086b3;
}

.markdown-question .pl-e,
.markdown-question .pl-en {
  color: #795da3;
}

.markdown-question .pl-smi,
.markdown-question .pl-s .pl-s1 {
  color: #333;
}

.markdown-question .pl-ent {
  color: #63a35c;
}

.markdown-question .pl-k {
  color: #a71d5d;
}

.markdown-question .pl-s,
.markdown-question .pl-pds,
.markdown-question .pl-s .pl-pse .pl-s1,
.markdown-question .pl-sr,
.markdown-question .pl-sr .pl-cce,
.markdown-question .pl-sr .pl-sre,
.markdown-question .pl-sr .pl-sra {
  color: #183691;
}

.markdown-question .pl-v,
.markdown-question .pl-smw {
  color: #ed6a43;
}

.markdown-question .pl-bu {
  color: #b52a1d;
}

.markdown-question .pl-ii {
  color: #f8f8f8;
  background-color: #b52a1d;
}

.markdown-question .pl-c2 {
  color: #f8f8f8;
  background-color: #b52a1d;
}

.markdown-question .pl-c2::before {
  content: "^M";
}

.markdown-question .pl-sr .pl-cce {
  font-weight: bold;
  color: #63a35c;
}

.markdown-question .pl-ml {
  color: #693a17;
}

.markdown-question .pl-mh,
.markdown-question .pl-mh .pl-en,
.markdown-question .pl-ms {
  font-weight: bold;
  color: #1d3e81;
}

.markdown-question .pl-mq {
  color: #008080;
}

.markdown-question .pl-mi {
  font-style: italic;
  color: #333;
}

.markdown-question .pl-mb {
  font-weight: bold;
  color: #333;
}

.markdown-question .pl-md {
  color: #bd2c00;
  background-color: #ffecec;
}

.markdown-question .pl-mi1 {
  color: #55a532;
  background-color: #eaffea;
}

.markdown-question .pl-mc {
  color: #ef9700;
  background-color: #ffe3b4;
}

.markdown-question .pl-mi2 {
  color: #d8d8d8;
  background-color: #808080;
}

.markdown-question .pl-mdr {
  font-weight: bold;
  color: #795da3;
}

.markdown-question .pl-mo {
  color: #1d3e81;
}

.markdown-question .pl-ba {
  color: #595e62;
}

.markdown-question .pl-sg {
  color: #c0c0c0;
}

.markdown-question .pl-corl {
  text-decoration: underline;
  color: #183691;
}

.markdown-question .octicon {
  display: inline-block;
  vertical-align: text-bottom;
  fill: currentColor;
}

.markdown-question a {
  color: #1890ff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

.markdown-question a:hover {
  text-decoration: underline;
}

.markdown-question a:active,
.markdown-question a:hover {
  outline-width: 0;
}

.markdown-question a:not([href]) {
  color: inherit;
  text-decoration: none;
}

.markdown-question img {
  border-style: none;
  max-width: 100%;
  box-sizing: content-box;
  background-color: #fff;
}

.markdown-question svg:not(:root) {
  overflow: hidden;
}

.markdown-question [type=checkbox] {
  padding: 0;
}

.markdown-question * {
  box-sizing: border-box;
}

.markdown-question input {
  font: inherit;
  margin: 0;
  overflow: visible;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.markdown-question hr {
  box-sizing: content-box;
  height: 1px;
  opacity: 0.5;
  padding: 0;
  margin: 24px 0;
  background-color: #cccccc;
  border: 0;
}

.markdown-question hr::before {
  display: table;
  content: "";
}

.markdown-question hr::after {
  display: table;
  clear: both;
  content: "";
}

.markdown-question table {
  font-size: 14px;
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
  overflow: auto;
  border: 1px solid #dee2e6;
}

.markdown-question table th {
  font-weight: 600;
}

.markdown-question table th,
.markdown-question table td {
  padding: 6px 13px;
  border: 1px solid #dee2e6;
  text-align: center;
}

.markdown-question table tr {
  background-color: #fff;
}

.markdown-question table tr:nth-child(2n) {
  background-color: rgba(24, 144, 255, 0.3);
}

.markdown-question th {
  background-color: #1890ff;
  color: white;
}

.markdown-question td,
.markdown-question th {
  padding: 0;
}

.markdown-question span.custom-gap {
  border-bottom: 1px solid #333333;
  padding: 0 16px;
  margin: 0 2px;
  color: #408cff;
}

.markdown-question video {
  width: 100%;
}

.markdown-question ol ol,
.markdown-question ul ol {
  list-style-type: lower-roman;
}

.markdown-question ul ul ol,
.markdown-question ul ol ol,
.markdown-question ol ul ol,
.markdown-question ol ol ol {
  list-style-type: lower-alpha;
}

.markdown-question dd {
  margin-left: 0;
}

.markdown-question code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 12px;
  padding: 0;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  margin: 0;
  background-color: rgba(27, 31, 35, 0.05);
  border-radius: 3px;
  color: #f97583;
}

.markdown-question code::before,
.markdown-question code::after {
  letter-spacing: -0.2em;
  content: " ";
}

.markdown-question .highlight {
  margin-bottom: 16px;
}

.markdown-question .highlight pre {
  margin-bottom: 0;
}

.markdown-question .highlight pre,
.markdown-question pre {
  padding: 12px;
  overflow: auto;
  font: 12px "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  line-height: 1.45;
  background-color: #f6f8fa;
  border-radius: 3px;
  color: #333333;
}

.markdown-question pre code {
  display: inline;
  max-width: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  line-height: inherit;
  background-color: transparent;
  border: 0;
  color: #333333;
}

.markdown-question pre code::before,
.markdown-question pre code::after {
  content: normal;
}

.markdown-question .pl-0 {
  padding-left: 0 !important;
}

.markdown-question .pl-1 {
  padding-left: 4px !important;
}

.markdown-question .pl-2 {
  padding-left: 8px !important;
}

.markdown-question .pl-3 {
  padding-left: 16px !important;
}

.markdown-question .pl-4 {
  padding-left: 24px !important;
}

.markdown-question .pl-5 {
  padding-left: 32px !important;
}

.markdown-question .pl-6 {
  padding-left: 40px !important;
}

.markdown-article::before {
  display: table;
  content: "";
}

.markdown-article::after {
  display: table;
  clear: both;
  content: "";
}

.markdown-question > *:first-child {
  margin-top: 0 !important;
}

.markdown-question > *:last-child {
  margin-bottom: 0 !important;
}

.markdown-question .anchor {
  float: left;
  padding-right: 4px;
  margin-left: -20px;
  line-height: 1;
}

.markdown-question .anchor:focus {
  outline: none;
}

.markdown-question ul,
.markdown-question ol,
.markdown-question dl,
.markdown-question table,
.markdown-question pre {
  margin-top: 0;
  margin-bottom: 20px;
}

.markdown-question blockquote {
  margin: 12px 0;
  padding: 1em 1em;
  color: #333;
  background-color: #f6f8fa;
  font-size: 12px;
}

.markdown-question blockquote > :first-child {
  margin-top: 0;
}

.markdown-question blockquote > :last-child {
  margin-bottom: 0;
}

.markdown-question kbd {
  display: inline-block;
  padding: 3px 5px;
  font: 11px "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  line-height: 10px;
  color: #444d56;
  vertical-align: middle;
  background-color: #fafbfc;
  border: solid 1px #c6cbd1;
  border-bottom-color: #959da5;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 #959da5;
}

.markdown-question p {
  margin: 12px 0;
  line-height: 20px;
  font-size: 14px;
}

.markdown-question h1 {
  font-size: 24px;
}

.markdown-question h2 {
  font-size: 20px;
}

.markdown-question h3 {
  font-size: 18px;
}

.markdown-question h4,
.markdown-question h5,
.markdown-question h6 {
  font-size: 16px;
}

.markdown-question h1,
.markdown-question h2,
.markdown-question h3,
.markdown-question h4,
.markdown-question h5,
.markdown-question h6 {
  margin-top: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.25;
  border: unset;
}

.markdown-question h1:hover .anchor,
.markdown-question h2:hover .anchor,
.markdown-question h3:hover .anchor,
.markdown-question h4:hover .anchor,
.markdown-question h5:hover .anchor,
.markdown-question h6:hover .anchor {
  text-decoration: none;
}

.markdown-question h1:hover .anchor .octicon-link,
.markdown-question h2:hover .anchor .octicon-link,
.markdown-question h3:hover .anchor .octicon-link,
.markdown-question h4:hover .anchor .octicon-link,
.markdown-question h5:hover .anchor .octicon-link,
.markdown-question h6:hover .anchor .octicon-link {
  visibility: visible;
}

.markdown-question h1::before,
.markdown-question h2::before,
.markdown-question h3::before,
.markdown-question h4::before {
  content: "#";
  color: #4488ff;
  margin-right: 0.5em;
}

.markdown-question ul {
  list-style-type: disc;
}

.markdown-question ul,
.markdown-question ol {
  border-left: 2px solid rgba(204, 204, 204, 0.5);
  padding-left: 28px;
  font-size: 14px;
  line-height: 20px;
}

.markdown-question ul ul,
.markdown-question ul ol,
.markdown-question ol ol,
.markdown-question ol ul {
  list-style-type: disc;
  margin-top: 0;
  margin-bottom: 0;
}

.markdown-question li > p {
  margin-top: 16px;
}

.markdown-question li + li {
  margin-top: 0.25em;
}

.markdown-question dl {
  padding: 0;
}

.markdown-question dl dt {
  padding: 0;
  margin-top: 16px;
  font-size: 1em;
  font-style: italic;
  font-weight: 600;
}

.markdown-question dl dd {
  padding: 0 16px;
  margin-bottom: 16px;
}

.markdown-question .full-commit .btn-outline:not(:disabled):hover {
  color: #005cc5;
  border-color: #005cc5;
}

.markdown-question :checked + .radio-label {
  position: relative;
  z-index: 1;
  border-color: #0366d6;
}

.markdown-question .task-list-item {
  list-style-type: none;
}

.markdown-question .task-list-item + .task-list-item {
  margin-top: 3px;
}

.markdown-question .task-list-item input {
  margin: 0 0.2em 0.25em -1.6em;
  vertical-align: middle;
}

.markdown-question object {
  max-width: 100%;
}

.markdown-question #plv_container {
  max-width: 100%;
}

.markdown-toc {
  max-height: 400px;
  overflow-y: scroll;
  padding: 15px;
}
.markdown-toc ul {
  list-style-type: disc;
  padding-left: 15px;
  margin-bottom: 0;
}
.markdown-toc ul li {
  margin-left: 0;
  line-height: 1.6em;
  padding: 2px 0;
}
.markdown-toc ul li a {
  color: #333;
}

.markdown-question strong {
  font-weight: bold;
}

.markdown-question :checked + .radio-label {
  border-color: #1890ff;
}

.markdown-question-snippet pre {
  padding-bottom: 10px;
}
.markdown-question-snippet pre::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.markdown-question-snippet pre::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #c7c7c7;
}
.markdown-question-snippet pre::-webkit-scrollbar-thumb:hover {
  background: #878787;
}

.markdown-code-black-background code {
  color: #fff;
  background: #353535;
}

.pads-show-page .essay-question-page,
.pads-show-page .gap-filling-question-page,
.pads-show-page .programming-question-page,
.pads-show-page .choice-question-page,
.pads-show-page .video-question-page,
.pads-show-page .pad-vue-page .wrapper,
.pads-show-page .paas-pad-wrap,
.pads-show-page .written-pad-wrap,
.pads-show-page .assessment-wrap,
.pads-show-page .mobile-question-content,
.pads-show-page .answer-content-markdown-wrap,
.pads-show-page .database-desc-content,
.pads-show-page .unittest-content,
.pads-show-page .smb-markdown-preview-wrap,
.pads-show-page .written-question-page-body,
.paas-question-written-questions-edit-page .essay-question-page,
.paas-question-written-questions-edit-page .gap-filling-question-page,
.paas-question-written-questions-edit-page .programming-question-page,
.paas-question-written-questions-edit-page .choice-question-page,
.paas-question-written-questions-edit-page .video-question-page,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper,
.paas-question-written-questions-edit-page .paas-pad-wrap,
.paas-question-written-questions-edit-page .written-pad-wrap,
.paas-question-written-questions-edit-page .assessment-wrap,
.paas-question-written-questions-edit-page .mobile-question-content,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap,
.paas-question-written-questions-edit-page .database-desc-content,
.paas-question-written-questions-edit-page .unittest-content,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap,
.paas-question-written-questions-edit-page .written-question-page-body,
.paas-question-written-questions-show-page .essay-question-page,
.paas-question-written-questions-show-page .gap-filling-question-page,
.paas-question-written-questions-show-page .programming-question-page,
.paas-question-written-questions-show-page .choice-question-page,
.paas-question-written-questions-show-page .video-question-page,
.paas-question-written-questions-show-page .pad-vue-page .wrapper,
.paas-question-written-questions-show-page .paas-pad-wrap,
.paas-question-written-questions-show-page .written-pad-wrap,
.paas-question-written-questions-show-page .assessment-wrap,
.paas-question-written-questions-show-page .mobile-question-content,
.paas-question-written-questions-show-page .answer-content-markdown-wrap,
.paas-question-written-questions-show-page .database-desc-content,
.paas-question-written-questions-show-page .unittest-content,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap,
.paas-question-written-questions-show-page .written-question-page-body,
.written-pads-show-page .essay-question-page,
.written-pads-show-page .gap-filling-question-page,
.written-pads-show-page .programming-question-page,
.written-pads-show-page .choice-question-page,
.written-pads-show-page .video-question-page,
.written-pads-show-page .pad-vue-page .wrapper,
.written-pads-show-page .paas-pad-wrap,
.written-pads-show-page .written-pad-wrap,
.written-pads-show-page .assessment-wrap,
.written-pads-show-page .mobile-question-content,
.written-pads-show-page .answer-content-markdown-wrap,
.written-pads-show-page .database-desc-content,
.written-pads-show-page .unittest-content,
.written-pads-show-page .smb-markdown-preview-wrap,
.written-pads-show-page .written-question-page-body,
.assessments-show-page .essay-question-page,
.assessments-show-page .gap-filling-question-page,
.assessments-show-page .programming-question-page,
.assessments-show-page .choice-question-page,
.assessments-show-page .video-question-page,
.assessments-show-page .pad-vue-page .wrapper,
.assessments-show-page .paas-pad-wrap,
.assessments-show-page .written-pad-wrap,
.assessments-show-page .assessment-wrap,
.assessments-show-page .mobile-question-content,
.assessments-show-page .answer-content-markdown-wrap,
.assessments-show-page .database-desc-content,
.assessments-show-page .unittest-content,
.assessments-show-page .smb-markdown-preview-wrap,
.assessments-show-page .written-question-page-body,
.paas-pads-show-page .essay-question-page,
.paas-pads-show-page .gap-filling-question-page,
.paas-pads-show-page .programming-question-page,
.paas-pads-show-page .choice-question-page,
.paas-pads-show-page .video-question-page,
.paas-pads-show-page .pad-vue-page .wrapper,
.paas-pads-show-page .paas-pad-wrap,
.paas-pads-show-page .written-pad-wrap,
.paas-pads-show-page .assessment-wrap,
.paas-pads-show-page .mobile-question-content,
.paas-pads-show-page .answer-content-markdown-wrap,
.paas-pads-show-page .database-desc-content,
.paas-pads-show-page .unittest-content,
.paas-pads-show-page .smb-markdown-preview-wrap,
.paas-pads-show-page .written-question-page-body,
.paas-snapshot-runners-show-page .essay-question-page,
.paas-snapshot-runners-show-page .gap-filling-question-page,
.paas-snapshot-runners-show-page .programming-question-page,
.paas-snapshot-runners-show-page .choice-question-page,
.paas-snapshot-runners-show-page .video-question-page,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper,
.paas-snapshot-runners-show-page .paas-pad-wrap,
.paas-snapshot-runners-show-page .written-pad-wrap,
.paas-snapshot-runners-show-page .assessment-wrap,
.paas-snapshot-runners-show-page .mobile-question-content,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap,
.paas-snapshot-runners-show-page .database-desc-content,
.paas-snapshot-runners-show-page .unittest-content,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap,
.paas-snapshot-runners-show-page .written-question-page-body {
  /*
  Monokai style - ported by Luigi Maselli - http://grigio.org
  */
}
.pads-show-page .essay-question-page .markdown-question h1,
.pads-show-page .essay-question-page .markdown-question h2,
.pads-show-page .essay-question-page .markdown-question h3,
.pads-show-page .essay-question-page .markdown-question h4,
.pads-show-page .essay-question-page .markdown-question h5,
.pads-show-page .essay-question-page .markdown-question h6,
.pads-show-page .essay-question-page .markdown-question pre code,
.pads-show-page .gap-filling-question-page .markdown-question h1,
.pads-show-page .gap-filling-question-page .markdown-question h2,
.pads-show-page .gap-filling-question-page .markdown-question h3,
.pads-show-page .gap-filling-question-page .markdown-question h4,
.pads-show-page .gap-filling-question-page .markdown-question h5,
.pads-show-page .gap-filling-question-page .markdown-question h6,
.pads-show-page .gap-filling-question-page .markdown-question pre code,
.pads-show-page .programming-question-page .markdown-question h1,
.pads-show-page .programming-question-page .markdown-question h2,
.pads-show-page .programming-question-page .markdown-question h3,
.pads-show-page .programming-question-page .markdown-question h4,
.pads-show-page .programming-question-page .markdown-question h5,
.pads-show-page .programming-question-page .markdown-question h6,
.pads-show-page .programming-question-page .markdown-question pre code,
.pads-show-page .choice-question-page .markdown-question h1,
.pads-show-page .choice-question-page .markdown-question h2,
.pads-show-page .choice-question-page .markdown-question h3,
.pads-show-page .choice-question-page .markdown-question h4,
.pads-show-page .choice-question-page .markdown-question h5,
.pads-show-page .choice-question-page .markdown-question h6,
.pads-show-page .choice-question-page .markdown-question pre code,
.pads-show-page .video-question-page .markdown-question h1,
.pads-show-page .video-question-page .markdown-question h2,
.pads-show-page .video-question-page .markdown-question h3,
.pads-show-page .video-question-page .markdown-question h4,
.pads-show-page .video-question-page .markdown-question h5,
.pads-show-page .video-question-page .markdown-question h6,
.pads-show-page .video-question-page .markdown-question pre code,
.pads-show-page .pad-vue-page .wrapper .markdown-question h1,
.pads-show-page .pad-vue-page .wrapper .markdown-question h2,
.pads-show-page .pad-vue-page .wrapper .markdown-question h3,
.pads-show-page .pad-vue-page .wrapper .markdown-question h4,
.pads-show-page .pad-vue-page .wrapper .markdown-question h5,
.pads-show-page .pad-vue-page .wrapper .markdown-question h6,
.pads-show-page .pad-vue-page .wrapper .markdown-question pre code,
.pads-show-page .paas-pad-wrap .markdown-question h1,
.pads-show-page .paas-pad-wrap .markdown-question h2,
.pads-show-page .paas-pad-wrap .markdown-question h3,
.pads-show-page .paas-pad-wrap .markdown-question h4,
.pads-show-page .paas-pad-wrap .markdown-question h5,
.pads-show-page .paas-pad-wrap .markdown-question h6,
.pads-show-page .paas-pad-wrap .markdown-question pre code,
.pads-show-page .written-pad-wrap .markdown-question h1,
.pads-show-page .written-pad-wrap .markdown-question h2,
.pads-show-page .written-pad-wrap .markdown-question h3,
.pads-show-page .written-pad-wrap .markdown-question h4,
.pads-show-page .written-pad-wrap .markdown-question h5,
.pads-show-page .written-pad-wrap .markdown-question h6,
.pads-show-page .written-pad-wrap .markdown-question pre code,
.pads-show-page .assessment-wrap .markdown-question h1,
.pads-show-page .assessment-wrap .markdown-question h2,
.pads-show-page .assessment-wrap .markdown-question h3,
.pads-show-page .assessment-wrap .markdown-question h4,
.pads-show-page .assessment-wrap .markdown-question h5,
.pads-show-page .assessment-wrap .markdown-question h6,
.pads-show-page .assessment-wrap .markdown-question pre code,
.pads-show-page .mobile-question-content .markdown-question h1,
.pads-show-page .mobile-question-content .markdown-question h2,
.pads-show-page .mobile-question-content .markdown-question h3,
.pads-show-page .mobile-question-content .markdown-question h4,
.pads-show-page .mobile-question-content .markdown-question h5,
.pads-show-page .mobile-question-content .markdown-question h6,
.pads-show-page .mobile-question-content .markdown-question pre code,
.pads-show-page .answer-content-markdown-wrap .markdown-question h1,
.pads-show-page .answer-content-markdown-wrap .markdown-question h2,
.pads-show-page .answer-content-markdown-wrap .markdown-question h3,
.pads-show-page .answer-content-markdown-wrap .markdown-question h4,
.pads-show-page .answer-content-markdown-wrap .markdown-question h5,
.pads-show-page .answer-content-markdown-wrap .markdown-question h6,
.pads-show-page .answer-content-markdown-wrap .markdown-question pre code,
.pads-show-page .database-desc-content .markdown-question h1,
.pads-show-page .database-desc-content .markdown-question h2,
.pads-show-page .database-desc-content .markdown-question h3,
.pads-show-page .database-desc-content .markdown-question h4,
.pads-show-page .database-desc-content .markdown-question h5,
.pads-show-page .database-desc-content .markdown-question h6,
.pads-show-page .database-desc-content .markdown-question pre code,
.pads-show-page .unittest-content .markdown-question h1,
.pads-show-page .unittest-content .markdown-question h2,
.pads-show-page .unittest-content .markdown-question h3,
.pads-show-page .unittest-content .markdown-question h4,
.pads-show-page .unittest-content .markdown-question h5,
.pads-show-page .unittest-content .markdown-question h6,
.pads-show-page .unittest-content .markdown-question pre code,
.pads-show-page .smb-markdown-preview-wrap .markdown-question h1,
.pads-show-page .smb-markdown-preview-wrap .markdown-question h2,
.pads-show-page .smb-markdown-preview-wrap .markdown-question h3,
.pads-show-page .smb-markdown-preview-wrap .markdown-question h4,
.pads-show-page .smb-markdown-preview-wrap .markdown-question h5,
.pads-show-page .smb-markdown-preview-wrap .markdown-question h6,
.pads-show-page .smb-markdown-preview-wrap .markdown-question pre code,
.pads-show-page .written-question-page-body .markdown-question h1,
.pads-show-page .written-question-page-body .markdown-question h2,
.pads-show-page .written-question-page-body .markdown-question h3,
.pads-show-page .written-question-page-body .markdown-question h4,
.pads-show-page .written-question-page-body .markdown-question h5,
.pads-show-page .written-question-page-body .markdown-question h6,
.pads-show-page .written-question-page-body .markdown-question pre code,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question h1,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question h2,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question h3,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question h4,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question h5,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question h6,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question pre code,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question h1,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question h2,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question h3,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question h4,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question h5,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question h6,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question pre code,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question h1,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question h2,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question h3,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question h4,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question h5,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question h6,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question pre code,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question h1,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question h2,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question h3,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question h4,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question h5,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question h6,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question pre code,
.paas-question-written-questions-edit-page .video-question-page .markdown-question h1,
.paas-question-written-questions-edit-page .video-question-page .markdown-question h2,
.paas-question-written-questions-edit-page .video-question-page .markdown-question h3,
.paas-question-written-questions-edit-page .video-question-page .markdown-question h4,
.paas-question-written-questions-edit-page .video-question-page .markdown-question h5,
.paas-question-written-questions-edit-page .video-question-page .markdown-question h6,
.paas-question-written-questions-edit-page .video-question-page .markdown-question pre code,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question h1,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question h2,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question h3,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question h4,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question h5,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question h6,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question pre code,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question h1,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question h2,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question h3,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question h4,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question h5,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question h6,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question pre code,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question h1,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question h2,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question h3,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question h4,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question h5,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question h6,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question pre code,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question h1,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question h2,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question h3,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question h4,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question h5,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question h6,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question pre code,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question h1,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question h2,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question h3,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question h4,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question h5,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question h6,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question pre code,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question h1,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question h2,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question h3,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question h4,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question h5,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question h6,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question pre code,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question h1,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question h2,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question h3,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question h4,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question h5,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question h6,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question pre code,
.paas-question-written-questions-edit-page .unittest-content .markdown-question h1,
.paas-question-written-questions-edit-page .unittest-content .markdown-question h2,
.paas-question-written-questions-edit-page .unittest-content .markdown-question h3,
.paas-question-written-questions-edit-page .unittest-content .markdown-question h4,
.paas-question-written-questions-edit-page .unittest-content .markdown-question h5,
.paas-question-written-questions-edit-page .unittest-content .markdown-question h6,
.paas-question-written-questions-edit-page .unittest-content .markdown-question pre code,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question h1,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question h2,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question h3,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question h4,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question h5,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question h6,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question pre code,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question h1,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question h2,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question h3,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question h4,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question h5,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question h6,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question pre code,
.paas-question-written-questions-show-page .essay-question-page .markdown-question h1,
.paas-question-written-questions-show-page .essay-question-page .markdown-question h2,
.paas-question-written-questions-show-page .essay-question-page .markdown-question h3,
.paas-question-written-questions-show-page .essay-question-page .markdown-question h4,
.paas-question-written-questions-show-page .essay-question-page .markdown-question h5,
.paas-question-written-questions-show-page .essay-question-page .markdown-question h6,
.paas-question-written-questions-show-page .essay-question-page .markdown-question pre code,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question h1,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question h2,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question h3,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question h4,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question h5,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question h6,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question pre code,
.paas-question-written-questions-show-page .programming-question-page .markdown-question h1,
.paas-question-written-questions-show-page .programming-question-page .markdown-question h2,
.paas-question-written-questions-show-page .programming-question-page .markdown-question h3,
.paas-question-written-questions-show-page .programming-question-page .markdown-question h4,
.paas-question-written-questions-show-page .programming-question-page .markdown-question h5,
.paas-question-written-questions-show-page .programming-question-page .markdown-question h6,
.paas-question-written-questions-show-page .programming-question-page .markdown-question pre code,
.paas-question-written-questions-show-page .choice-question-page .markdown-question h1,
.paas-question-written-questions-show-page .choice-question-page .markdown-question h2,
.paas-question-written-questions-show-page .choice-question-page .markdown-question h3,
.paas-question-written-questions-show-page .choice-question-page .markdown-question h4,
.paas-question-written-questions-show-page .choice-question-page .markdown-question h5,
.paas-question-written-questions-show-page .choice-question-page .markdown-question h6,
.paas-question-written-questions-show-page .choice-question-page .markdown-question pre code,
.paas-question-written-questions-show-page .video-question-page .markdown-question h1,
.paas-question-written-questions-show-page .video-question-page .markdown-question h2,
.paas-question-written-questions-show-page .video-question-page .markdown-question h3,
.paas-question-written-questions-show-page .video-question-page .markdown-question h4,
.paas-question-written-questions-show-page .video-question-page .markdown-question h5,
.paas-question-written-questions-show-page .video-question-page .markdown-question h6,
.paas-question-written-questions-show-page .video-question-page .markdown-question pre code,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question h1,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question h2,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question h3,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question h4,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question h5,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question h6,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question pre code,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question h1,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question h2,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question h3,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question h4,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question h5,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question h6,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question pre code,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question h1,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question h2,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question h3,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question h4,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question h5,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question h6,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question pre code,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question h1,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question h2,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question h3,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question h4,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question h5,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question h6,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question pre code,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question h1,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question h2,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question h3,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question h4,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question h5,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question h6,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question pre code,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question h1,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question h2,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question h3,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question h4,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question h5,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question h6,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question pre code,
.paas-question-written-questions-show-page .database-desc-content .markdown-question h1,
.paas-question-written-questions-show-page .database-desc-content .markdown-question h2,
.paas-question-written-questions-show-page .database-desc-content .markdown-question h3,
.paas-question-written-questions-show-page .database-desc-content .markdown-question h4,
.paas-question-written-questions-show-page .database-desc-content .markdown-question h5,
.paas-question-written-questions-show-page .database-desc-content .markdown-question h6,
.paas-question-written-questions-show-page .database-desc-content .markdown-question pre code,
.paas-question-written-questions-show-page .unittest-content .markdown-question h1,
.paas-question-written-questions-show-page .unittest-content .markdown-question h2,
.paas-question-written-questions-show-page .unittest-content .markdown-question h3,
.paas-question-written-questions-show-page .unittest-content .markdown-question h4,
.paas-question-written-questions-show-page .unittest-content .markdown-question h5,
.paas-question-written-questions-show-page .unittest-content .markdown-question h6,
.paas-question-written-questions-show-page .unittest-content .markdown-question pre code,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question h1,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question h2,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question h3,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question h4,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question h5,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question h6,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question pre code,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question h1,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question h2,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question h3,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question h4,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question h5,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question h6,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question pre code,
.written-pads-show-page .essay-question-page .markdown-question h1,
.written-pads-show-page .essay-question-page .markdown-question h2,
.written-pads-show-page .essay-question-page .markdown-question h3,
.written-pads-show-page .essay-question-page .markdown-question h4,
.written-pads-show-page .essay-question-page .markdown-question h5,
.written-pads-show-page .essay-question-page .markdown-question h6,
.written-pads-show-page .essay-question-page .markdown-question pre code,
.written-pads-show-page .gap-filling-question-page .markdown-question h1,
.written-pads-show-page .gap-filling-question-page .markdown-question h2,
.written-pads-show-page .gap-filling-question-page .markdown-question h3,
.written-pads-show-page .gap-filling-question-page .markdown-question h4,
.written-pads-show-page .gap-filling-question-page .markdown-question h5,
.written-pads-show-page .gap-filling-question-page .markdown-question h6,
.written-pads-show-page .gap-filling-question-page .markdown-question pre code,
.written-pads-show-page .programming-question-page .markdown-question h1,
.written-pads-show-page .programming-question-page .markdown-question h2,
.written-pads-show-page .programming-question-page .markdown-question h3,
.written-pads-show-page .programming-question-page .markdown-question h4,
.written-pads-show-page .programming-question-page .markdown-question h5,
.written-pads-show-page .programming-question-page .markdown-question h6,
.written-pads-show-page .programming-question-page .markdown-question pre code,
.written-pads-show-page .choice-question-page .markdown-question h1,
.written-pads-show-page .choice-question-page .markdown-question h2,
.written-pads-show-page .choice-question-page .markdown-question h3,
.written-pads-show-page .choice-question-page .markdown-question h4,
.written-pads-show-page .choice-question-page .markdown-question h5,
.written-pads-show-page .choice-question-page .markdown-question h6,
.written-pads-show-page .choice-question-page .markdown-question pre code,
.written-pads-show-page .video-question-page .markdown-question h1,
.written-pads-show-page .video-question-page .markdown-question h2,
.written-pads-show-page .video-question-page .markdown-question h3,
.written-pads-show-page .video-question-page .markdown-question h4,
.written-pads-show-page .video-question-page .markdown-question h5,
.written-pads-show-page .video-question-page .markdown-question h6,
.written-pads-show-page .video-question-page .markdown-question pre code,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question h1,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question h2,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question h3,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question h4,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question h5,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question h6,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question pre code,
.written-pads-show-page .paas-pad-wrap .markdown-question h1,
.written-pads-show-page .paas-pad-wrap .markdown-question h2,
.written-pads-show-page .paas-pad-wrap .markdown-question h3,
.written-pads-show-page .paas-pad-wrap .markdown-question h4,
.written-pads-show-page .paas-pad-wrap .markdown-question h5,
.written-pads-show-page .paas-pad-wrap .markdown-question h6,
.written-pads-show-page .paas-pad-wrap .markdown-question pre code,
.written-pads-show-page .written-pad-wrap .markdown-question h1,
.written-pads-show-page .written-pad-wrap .markdown-question h2,
.written-pads-show-page .written-pad-wrap .markdown-question h3,
.written-pads-show-page .written-pad-wrap .markdown-question h4,
.written-pads-show-page .written-pad-wrap .markdown-question h5,
.written-pads-show-page .written-pad-wrap .markdown-question h6,
.written-pads-show-page .written-pad-wrap .markdown-question pre code,
.written-pads-show-page .assessment-wrap .markdown-question h1,
.written-pads-show-page .assessment-wrap .markdown-question h2,
.written-pads-show-page .assessment-wrap .markdown-question h3,
.written-pads-show-page .assessment-wrap .markdown-question h4,
.written-pads-show-page .assessment-wrap .markdown-question h5,
.written-pads-show-page .assessment-wrap .markdown-question h6,
.written-pads-show-page .assessment-wrap .markdown-question pre code,
.written-pads-show-page .mobile-question-content .markdown-question h1,
.written-pads-show-page .mobile-question-content .markdown-question h2,
.written-pads-show-page .mobile-question-content .markdown-question h3,
.written-pads-show-page .mobile-question-content .markdown-question h4,
.written-pads-show-page .mobile-question-content .markdown-question h5,
.written-pads-show-page .mobile-question-content .markdown-question h6,
.written-pads-show-page .mobile-question-content .markdown-question pre code,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question h1,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question h2,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question h3,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question h4,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question h5,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question h6,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question pre code,
.written-pads-show-page .database-desc-content .markdown-question h1,
.written-pads-show-page .database-desc-content .markdown-question h2,
.written-pads-show-page .database-desc-content .markdown-question h3,
.written-pads-show-page .database-desc-content .markdown-question h4,
.written-pads-show-page .database-desc-content .markdown-question h5,
.written-pads-show-page .database-desc-content .markdown-question h6,
.written-pads-show-page .database-desc-content .markdown-question pre code,
.written-pads-show-page .unittest-content .markdown-question h1,
.written-pads-show-page .unittest-content .markdown-question h2,
.written-pads-show-page .unittest-content .markdown-question h3,
.written-pads-show-page .unittest-content .markdown-question h4,
.written-pads-show-page .unittest-content .markdown-question h5,
.written-pads-show-page .unittest-content .markdown-question h6,
.written-pads-show-page .unittest-content .markdown-question pre code,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question h1,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question h2,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question h3,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question h4,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question h5,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question h6,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question pre code,
.written-pads-show-page .written-question-page-body .markdown-question h1,
.written-pads-show-page .written-question-page-body .markdown-question h2,
.written-pads-show-page .written-question-page-body .markdown-question h3,
.written-pads-show-page .written-question-page-body .markdown-question h4,
.written-pads-show-page .written-question-page-body .markdown-question h5,
.written-pads-show-page .written-question-page-body .markdown-question h6,
.written-pads-show-page .written-question-page-body .markdown-question pre code,
.assessments-show-page .essay-question-page .markdown-question h1,
.assessments-show-page .essay-question-page .markdown-question h2,
.assessments-show-page .essay-question-page .markdown-question h3,
.assessments-show-page .essay-question-page .markdown-question h4,
.assessments-show-page .essay-question-page .markdown-question h5,
.assessments-show-page .essay-question-page .markdown-question h6,
.assessments-show-page .essay-question-page .markdown-question pre code,
.assessments-show-page .gap-filling-question-page .markdown-question h1,
.assessments-show-page .gap-filling-question-page .markdown-question h2,
.assessments-show-page .gap-filling-question-page .markdown-question h3,
.assessments-show-page .gap-filling-question-page .markdown-question h4,
.assessments-show-page .gap-filling-question-page .markdown-question h5,
.assessments-show-page .gap-filling-question-page .markdown-question h6,
.assessments-show-page .gap-filling-question-page .markdown-question pre code,
.assessments-show-page .programming-question-page .markdown-question h1,
.assessments-show-page .programming-question-page .markdown-question h2,
.assessments-show-page .programming-question-page .markdown-question h3,
.assessments-show-page .programming-question-page .markdown-question h4,
.assessments-show-page .programming-question-page .markdown-question h5,
.assessments-show-page .programming-question-page .markdown-question h6,
.assessments-show-page .programming-question-page .markdown-question pre code,
.assessments-show-page .choice-question-page .markdown-question h1,
.assessments-show-page .choice-question-page .markdown-question h2,
.assessments-show-page .choice-question-page .markdown-question h3,
.assessments-show-page .choice-question-page .markdown-question h4,
.assessments-show-page .choice-question-page .markdown-question h5,
.assessments-show-page .choice-question-page .markdown-question h6,
.assessments-show-page .choice-question-page .markdown-question pre code,
.assessments-show-page .video-question-page .markdown-question h1,
.assessments-show-page .video-question-page .markdown-question h2,
.assessments-show-page .video-question-page .markdown-question h3,
.assessments-show-page .video-question-page .markdown-question h4,
.assessments-show-page .video-question-page .markdown-question h5,
.assessments-show-page .video-question-page .markdown-question h6,
.assessments-show-page .video-question-page .markdown-question pre code,
.assessments-show-page .pad-vue-page .wrapper .markdown-question h1,
.assessments-show-page .pad-vue-page .wrapper .markdown-question h2,
.assessments-show-page .pad-vue-page .wrapper .markdown-question h3,
.assessments-show-page .pad-vue-page .wrapper .markdown-question h4,
.assessments-show-page .pad-vue-page .wrapper .markdown-question h5,
.assessments-show-page .pad-vue-page .wrapper .markdown-question h6,
.assessments-show-page .pad-vue-page .wrapper .markdown-question pre code,
.assessments-show-page .paas-pad-wrap .markdown-question h1,
.assessments-show-page .paas-pad-wrap .markdown-question h2,
.assessments-show-page .paas-pad-wrap .markdown-question h3,
.assessments-show-page .paas-pad-wrap .markdown-question h4,
.assessments-show-page .paas-pad-wrap .markdown-question h5,
.assessments-show-page .paas-pad-wrap .markdown-question h6,
.assessments-show-page .paas-pad-wrap .markdown-question pre code,
.assessments-show-page .written-pad-wrap .markdown-question h1,
.assessments-show-page .written-pad-wrap .markdown-question h2,
.assessments-show-page .written-pad-wrap .markdown-question h3,
.assessments-show-page .written-pad-wrap .markdown-question h4,
.assessments-show-page .written-pad-wrap .markdown-question h5,
.assessments-show-page .written-pad-wrap .markdown-question h6,
.assessments-show-page .written-pad-wrap .markdown-question pre code,
.assessments-show-page .assessment-wrap .markdown-question h1,
.assessments-show-page .assessment-wrap .markdown-question h2,
.assessments-show-page .assessment-wrap .markdown-question h3,
.assessments-show-page .assessment-wrap .markdown-question h4,
.assessments-show-page .assessment-wrap .markdown-question h5,
.assessments-show-page .assessment-wrap .markdown-question h6,
.assessments-show-page .assessment-wrap .markdown-question pre code,
.assessments-show-page .mobile-question-content .markdown-question h1,
.assessments-show-page .mobile-question-content .markdown-question h2,
.assessments-show-page .mobile-question-content .markdown-question h3,
.assessments-show-page .mobile-question-content .markdown-question h4,
.assessments-show-page .mobile-question-content .markdown-question h5,
.assessments-show-page .mobile-question-content .markdown-question h6,
.assessments-show-page .mobile-question-content .markdown-question pre code,
.assessments-show-page .answer-content-markdown-wrap .markdown-question h1,
.assessments-show-page .answer-content-markdown-wrap .markdown-question h2,
.assessments-show-page .answer-content-markdown-wrap .markdown-question h3,
.assessments-show-page .answer-content-markdown-wrap .markdown-question h4,
.assessments-show-page .answer-content-markdown-wrap .markdown-question h5,
.assessments-show-page .answer-content-markdown-wrap .markdown-question h6,
.assessments-show-page .answer-content-markdown-wrap .markdown-question pre code,
.assessments-show-page .database-desc-content .markdown-question h1,
.assessments-show-page .database-desc-content .markdown-question h2,
.assessments-show-page .database-desc-content .markdown-question h3,
.assessments-show-page .database-desc-content .markdown-question h4,
.assessments-show-page .database-desc-content .markdown-question h5,
.assessments-show-page .database-desc-content .markdown-question h6,
.assessments-show-page .database-desc-content .markdown-question pre code,
.assessments-show-page .unittest-content .markdown-question h1,
.assessments-show-page .unittest-content .markdown-question h2,
.assessments-show-page .unittest-content .markdown-question h3,
.assessments-show-page .unittest-content .markdown-question h4,
.assessments-show-page .unittest-content .markdown-question h5,
.assessments-show-page .unittest-content .markdown-question h6,
.assessments-show-page .unittest-content .markdown-question pre code,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question h1,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question h2,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question h3,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question h4,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question h5,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question h6,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question pre code,
.assessments-show-page .written-question-page-body .markdown-question h1,
.assessments-show-page .written-question-page-body .markdown-question h2,
.assessments-show-page .written-question-page-body .markdown-question h3,
.assessments-show-page .written-question-page-body .markdown-question h4,
.assessments-show-page .written-question-page-body .markdown-question h5,
.assessments-show-page .written-question-page-body .markdown-question h6,
.assessments-show-page .written-question-page-body .markdown-question pre code,
.paas-pads-show-page .essay-question-page .markdown-question h1,
.paas-pads-show-page .essay-question-page .markdown-question h2,
.paas-pads-show-page .essay-question-page .markdown-question h3,
.paas-pads-show-page .essay-question-page .markdown-question h4,
.paas-pads-show-page .essay-question-page .markdown-question h5,
.paas-pads-show-page .essay-question-page .markdown-question h6,
.paas-pads-show-page .essay-question-page .markdown-question pre code,
.paas-pads-show-page .gap-filling-question-page .markdown-question h1,
.paas-pads-show-page .gap-filling-question-page .markdown-question h2,
.paas-pads-show-page .gap-filling-question-page .markdown-question h3,
.paas-pads-show-page .gap-filling-question-page .markdown-question h4,
.paas-pads-show-page .gap-filling-question-page .markdown-question h5,
.paas-pads-show-page .gap-filling-question-page .markdown-question h6,
.paas-pads-show-page .gap-filling-question-page .markdown-question pre code,
.paas-pads-show-page .programming-question-page .markdown-question h1,
.paas-pads-show-page .programming-question-page .markdown-question h2,
.paas-pads-show-page .programming-question-page .markdown-question h3,
.paas-pads-show-page .programming-question-page .markdown-question h4,
.paas-pads-show-page .programming-question-page .markdown-question h5,
.paas-pads-show-page .programming-question-page .markdown-question h6,
.paas-pads-show-page .programming-question-page .markdown-question pre code,
.paas-pads-show-page .choice-question-page .markdown-question h1,
.paas-pads-show-page .choice-question-page .markdown-question h2,
.paas-pads-show-page .choice-question-page .markdown-question h3,
.paas-pads-show-page .choice-question-page .markdown-question h4,
.paas-pads-show-page .choice-question-page .markdown-question h5,
.paas-pads-show-page .choice-question-page .markdown-question h6,
.paas-pads-show-page .choice-question-page .markdown-question pre code,
.paas-pads-show-page .video-question-page .markdown-question h1,
.paas-pads-show-page .video-question-page .markdown-question h2,
.paas-pads-show-page .video-question-page .markdown-question h3,
.paas-pads-show-page .video-question-page .markdown-question h4,
.paas-pads-show-page .video-question-page .markdown-question h5,
.paas-pads-show-page .video-question-page .markdown-question h6,
.paas-pads-show-page .video-question-page .markdown-question pre code,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question h1,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question h2,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question h3,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question h4,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question h5,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question h6,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question pre code,
.paas-pads-show-page .paas-pad-wrap .markdown-question h1,
.paas-pads-show-page .paas-pad-wrap .markdown-question h2,
.paas-pads-show-page .paas-pad-wrap .markdown-question h3,
.paas-pads-show-page .paas-pad-wrap .markdown-question h4,
.paas-pads-show-page .paas-pad-wrap .markdown-question h5,
.paas-pads-show-page .paas-pad-wrap .markdown-question h6,
.paas-pads-show-page .paas-pad-wrap .markdown-question pre code,
.paas-pads-show-page .written-pad-wrap .markdown-question h1,
.paas-pads-show-page .written-pad-wrap .markdown-question h2,
.paas-pads-show-page .written-pad-wrap .markdown-question h3,
.paas-pads-show-page .written-pad-wrap .markdown-question h4,
.paas-pads-show-page .written-pad-wrap .markdown-question h5,
.paas-pads-show-page .written-pad-wrap .markdown-question h6,
.paas-pads-show-page .written-pad-wrap .markdown-question pre code,
.paas-pads-show-page .assessment-wrap .markdown-question h1,
.paas-pads-show-page .assessment-wrap .markdown-question h2,
.paas-pads-show-page .assessment-wrap .markdown-question h3,
.paas-pads-show-page .assessment-wrap .markdown-question h4,
.paas-pads-show-page .assessment-wrap .markdown-question h5,
.paas-pads-show-page .assessment-wrap .markdown-question h6,
.paas-pads-show-page .assessment-wrap .markdown-question pre code,
.paas-pads-show-page .mobile-question-content .markdown-question h1,
.paas-pads-show-page .mobile-question-content .markdown-question h2,
.paas-pads-show-page .mobile-question-content .markdown-question h3,
.paas-pads-show-page .mobile-question-content .markdown-question h4,
.paas-pads-show-page .mobile-question-content .markdown-question h5,
.paas-pads-show-page .mobile-question-content .markdown-question h6,
.paas-pads-show-page .mobile-question-content .markdown-question pre code,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question h1,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question h2,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question h3,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question h4,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question h5,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question h6,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question pre code,
.paas-pads-show-page .database-desc-content .markdown-question h1,
.paas-pads-show-page .database-desc-content .markdown-question h2,
.paas-pads-show-page .database-desc-content .markdown-question h3,
.paas-pads-show-page .database-desc-content .markdown-question h4,
.paas-pads-show-page .database-desc-content .markdown-question h5,
.paas-pads-show-page .database-desc-content .markdown-question h6,
.paas-pads-show-page .database-desc-content .markdown-question pre code,
.paas-pads-show-page .unittest-content .markdown-question h1,
.paas-pads-show-page .unittest-content .markdown-question h2,
.paas-pads-show-page .unittest-content .markdown-question h3,
.paas-pads-show-page .unittest-content .markdown-question h4,
.paas-pads-show-page .unittest-content .markdown-question h5,
.paas-pads-show-page .unittest-content .markdown-question h6,
.paas-pads-show-page .unittest-content .markdown-question pre code,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question h1,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question h2,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question h3,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question h4,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question h5,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question h6,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question pre code,
.paas-pads-show-page .written-question-page-body .markdown-question h1,
.paas-pads-show-page .written-question-page-body .markdown-question h2,
.paas-pads-show-page .written-question-page-body .markdown-question h3,
.paas-pads-show-page .written-question-page-body .markdown-question h4,
.paas-pads-show-page .written-question-page-body .markdown-question h5,
.paas-pads-show-page .written-question-page-body .markdown-question h6,
.paas-pads-show-page .written-question-page-body .markdown-question pre code,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question h1,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question h2,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question h3,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question h4,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question h5,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question h6,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question pre code,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question h1,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question h2,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question h3,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question h4,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question h5,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question h6,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question pre code,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question h1,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question h2,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question h3,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question h4,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question h5,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question h6,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question pre code,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question h1,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question h2,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question h3,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question h4,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question h5,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question h6,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question pre code,
.paas-snapshot-runners-show-page .video-question-page .markdown-question h1,
.paas-snapshot-runners-show-page .video-question-page .markdown-question h2,
.paas-snapshot-runners-show-page .video-question-page .markdown-question h3,
.paas-snapshot-runners-show-page .video-question-page .markdown-question h4,
.paas-snapshot-runners-show-page .video-question-page .markdown-question h5,
.paas-snapshot-runners-show-page .video-question-page .markdown-question h6,
.paas-snapshot-runners-show-page .video-question-page .markdown-question pre code,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question h1,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question h2,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question h3,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question h4,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question h5,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question h6,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question pre code,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question h1,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question h2,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question h3,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question h4,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question h5,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question h6,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question pre code,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question h1,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question h2,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question h3,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question h4,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question h5,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question h6,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question pre code,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question h1,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question h2,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question h3,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question h4,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question h5,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question h6,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question pre code,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question h1,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question h2,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question h3,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question h4,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question h5,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question h6,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question pre code,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question h1,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question h2,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question h3,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question h4,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question h5,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question h6,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question pre code,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question h1,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question h2,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question h3,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question h4,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question h5,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question h6,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question pre code,
.paas-snapshot-runners-show-page .unittest-content .markdown-question h1,
.paas-snapshot-runners-show-page .unittest-content .markdown-question h2,
.paas-snapshot-runners-show-page .unittest-content .markdown-question h3,
.paas-snapshot-runners-show-page .unittest-content .markdown-question h4,
.paas-snapshot-runners-show-page .unittest-content .markdown-question h5,
.paas-snapshot-runners-show-page .unittest-content .markdown-question h6,
.paas-snapshot-runners-show-page .unittest-content .markdown-question pre code,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question h1,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question h2,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question h3,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question h4,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question h5,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question h6,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question pre code,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question h1,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question h2,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question h3,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question h4,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question h5,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question h6,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question pre code {
  color: #f5f7fa;
}
.pads-show-page .essay-question-page .markdown-question .highlight pre,
.pads-show-page .essay-question-page .markdown-question code,
.pads-show-page .gap-filling-question-page .markdown-question .highlight pre,
.pads-show-page .gap-filling-question-page .markdown-question code,
.pads-show-page .programming-question-page .markdown-question .highlight pre,
.pads-show-page .programming-question-page .markdown-question code,
.pads-show-page .choice-question-page .markdown-question .highlight pre,
.pads-show-page .choice-question-page .markdown-question code,
.pads-show-page .video-question-page .markdown-question .highlight pre,
.pads-show-page .video-question-page .markdown-question code,
.pads-show-page .pad-vue-page .wrapper .markdown-question .highlight pre,
.pads-show-page .pad-vue-page .wrapper .markdown-question code,
.pads-show-page .paas-pad-wrap .markdown-question .highlight pre,
.pads-show-page .paas-pad-wrap .markdown-question code,
.pads-show-page .written-pad-wrap .markdown-question .highlight pre,
.pads-show-page .written-pad-wrap .markdown-question code,
.pads-show-page .assessment-wrap .markdown-question .highlight pre,
.pads-show-page .assessment-wrap .markdown-question code,
.pads-show-page .mobile-question-content .markdown-question .highlight pre,
.pads-show-page .mobile-question-content .markdown-question code,
.pads-show-page .answer-content-markdown-wrap .markdown-question .highlight pre,
.pads-show-page .answer-content-markdown-wrap .markdown-question code,
.pads-show-page .database-desc-content .markdown-question .highlight pre,
.pads-show-page .database-desc-content .markdown-question code,
.pads-show-page .unittest-content .markdown-question .highlight pre,
.pads-show-page .unittest-content .markdown-question code,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .highlight pre,
.pads-show-page .smb-markdown-preview-wrap .markdown-question code,
.pads-show-page .written-question-page-body .markdown-question .highlight pre,
.pads-show-page .written-question-page-body .markdown-question code,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .highlight pre,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question code,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .highlight pre,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question code,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .highlight pre,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question code,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .highlight pre,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question code,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .highlight pre,
.paas-question-written-questions-edit-page .video-question-page .markdown-question code,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .highlight pre,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question code,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .highlight pre,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question code,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .highlight pre,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question code,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .highlight pre,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question code,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .highlight pre,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question code,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .highlight pre,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question code,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .highlight pre,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question code,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .highlight pre,
.paas-question-written-questions-edit-page .unittest-content .markdown-question code,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .highlight pre,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question code,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .highlight pre,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question code,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .highlight pre,
.paas-question-written-questions-show-page .essay-question-page .markdown-question code,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .highlight pre,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question code,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .highlight pre,
.paas-question-written-questions-show-page .programming-question-page .markdown-question code,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .highlight pre,
.paas-question-written-questions-show-page .choice-question-page .markdown-question code,
.paas-question-written-questions-show-page .video-question-page .markdown-question .highlight pre,
.paas-question-written-questions-show-page .video-question-page .markdown-question code,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .highlight pre,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question code,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .highlight pre,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question code,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .highlight pre,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question code,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .highlight pre,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question code,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .highlight pre,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question code,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .highlight pre,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question code,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .highlight pre,
.paas-question-written-questions-show-page .database-desc-content .markdown-question code,
.paas-question-written-questions-show-page .unittest-content .markdown-question .highlight pre,
.paas-question-written-questions-show-page .unittest-content .markdown-question code,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .highlight pre,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question code,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .highlight pre,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question code,
.written-pads-show-page .essay-question-page .markdown-question .highlight pre,
.written-pads-show-page .essay-question-page .markdown-question code,
.written-pads-show-page .gap-filling-question-page .markdown-question .highlight pre,
.written-pads-show-page .gap-filling-question-page .markdown-question code,
.written-pads-show-page .programming-question-page .markdown-question .highlight pre,
.written-pads-show-page .programming-question-page .markdown-question code,
.written-pads-show-page .choice-question-page .markdown-question .highlight pre,
.written-pads-show-page .choice-question-page .markdown-question code,
.written-pads-show-page .video-question-page .markdown-question .highlight pre,
.written-pads-show-page .video-question-page .markdown-question code,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .highlight pre,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question code,
.written-pads-show-page .paas-pad-wrap .markdown-question .highlight pre,
.written-pads-show-page .paas-pad-wrap .markdown-question code,
.written-pads-show-page .written-pad-wrap .markdown-question .highlight pre,
.written-pads-show-page .written-pad-wrap .markdown-question code,
.written-pads-show-page .assessment-wrap .markdown-question .highlight pre,
.written-pads-show-page .assessment-wrap .markdown-question code,
.written-pads-show-page .mobile-question-content .markdown-question .highlight pre,
.written-pads-show-page .mobile-question-content .markdown-question code,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .highlight pre,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question code,
.written-pads-show-page .database-desc-content .markdown-question .highlight pre,
.written-pads-show-page .database-desc-content .markdown-question code,
.written-pads-show-page .unittest-content .markdown-question .highlight pre,
.written-pads-show-page .unittest-content .markdown-question code,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .highlight pre,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question code,
.written-pads-show-page .written-question-page-body .markdown-question .highlight pre,
.written-pads-show-page .written-question-page-body .markdown-question code,
.assessments-show-page .essay-question-page .markdown-question .highlight pre,
.assessments-show-page .essay-question-page .markdown-question code,
.assessments-show-page .gap-filling-question-page .markdown-question .highlight pre,
.assessments-show-page .gap-filling-question-page .markdown-question code,
.assessments-show-page .programming-question-page .markdown-question .highlight pre,
.assessments-show-page .programming-question-page .markdown-question code,
.assessments-show-page .choice-question-page .markdown-question .highlight pre,
.assessments-show-page .choice-question-page .markdown-question code,
.assessments-show-page .video-question-page .markdown-question .highlight pre,
.assessments-show-page .video-question-page .markdown-question code,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .highlight pre,
.assessments-show-page .pad-vue-page .wrapper .markdown-question code,
.assessments-show-page .paas-pad-wrap .markdown-question .highlight pre,
.assessments-show-page .paas-pad-wrap .markdown-question code,
.assessments-show-page .written-pad-wrap .markdown-question .highlight pre,
.assessments-show-page .written-pad-wrap .markdown-question code,
.assessments-show-page .assessment-wrap .markdown-question .highlight pre,
.assessments-show-page .assessment-wrap .markdown-question code,
.assessments-show-page .mobile-question-content .markdown-question .highlight pre,
.assessments-show-page .mobile-question-content .markdown-question code,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .highlight pre,
.assessments-show-page .answer-content-markdown-wrap .markdown-question code,
.assessments-show-page .database-desc-content .markdown-question .highlight pre,
.assessments-show-page .database-desc-content .markdown-question code,
.assessments-show-page .unittest-content .markdown-question .highlight pre,
.assessments-show-page .unittest-content .markdown-question code,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .highlight pre,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question code,
.assessments-show-page .written-question-page-body .markdown-question .highlight pre,
.assessments-show-page .written-question-page-body .markdown-question code,
.paas-pads-show-page .essay-question-page .markdown-question .highlight pre,
.paas-pads-show-page .essay-question-page .markdown-question code,
.paas-pads-show-page .gap-filling-question-page .markdown-question .highlight pre,
.paas-pads-show-page .gap-filling-question-page .markdown-question code,
.paas-pads-show-page .programming-question-page .markdown-question .highlight pre,
.paas-pads-show-page .programming-question-page .markdown-question code,
.paas-pads-show-page .choice-question-page .markdown-question .highlight pre,
.paas-pads-show-page .choice-question-page .markdown-question code,
.paas-pads-show-page .video-question-page .markdown-question .highlight pre,
.paas-pads-show-page .video-question-page .markdown-question code,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .highlight pre,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question code,
.paas-pads-show-page .paas-pad-wrap .markdown-question .highlight pre,
.paas-pads-show-page .paas-pad-wrap .markdown-question code,
.paas-pads-show-page .written-pad-wrap .markdown-question .highlight pre,
.paas-pads-show-page .written-pad-wrap .markdown-question code,
.paas-pads-show-page .assessment-wrap .markdown-question .highlight pre,
.paas-pads-show-page .assessment-wrap .markdown-question code,
.paas-pads-show-page .mobile-question-content .markdown-question .highlight pre,
.paas-pads-show-page .mobile-question-content .markdown-question code,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .highlight pre,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question code,
.paas-pads-show-page .database-desc-content .markdown-question .highlight pre,
.paas-pads-show-page .database-desc-content .markdown-question code,
.paas-pads-show-page .unittest-content .markdown-question .highlight pre,
.paas-pads-show-page .unittest-content .markdown-question code,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .highlight pre,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question code,
.paas-pads-show-page .written-question-page-body .markdown-question .highlight pre,
.paas-pads-show-page .written-question-page-body .markdown-question code,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .highlight pre,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question code,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .highlight pre,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question code,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .highlight pre,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question code,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .highlight pre,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question code,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .highlight pre,
.paas-snapshot-runners-show-page .video-question-page .markdown-question code,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .highlight pre,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question code,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .highlight pre,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question code,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .highlight pre,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question code,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .highlight pre,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question code,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .highlight pre,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question code,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .highlight pre,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question code,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .highlight pre,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question code,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .highlight pre,
.paas-snapshot-runners-show-page .unittest-content .markdown-question code,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .highlight pre,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question code,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .highlight pre,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question code {
  background: rgba(255, 255, 255, 0.05);
}
.pads-show-page .essay-question-page .markdown-question pre,
.pads-show-page .gap-filling-question-page .markdown-question pre,
.pads-show-page .programming-question-page .markdown-question pre,
.pads-show-page .choice-question-page .markdown-question pre,
.pads-show-page .video-question-page .markdown-question pre,
.pads-show-page .pad-vue-page .wrapper .markdown-question pre,
.pads-show-page .paas-pad-wrap .markdown-question pre,
.pads-show-page .written-pad-wrap .markdown-question pre,
.pads-show-page .assessment-wrap .markdown-question pre,
.pads-show-page .mobile-question-content .markdown-question pre,
.pads-show-page .answer-content-markdown-wrap .markdown-question pre,
.pads-show-page .database-desc-content .markdown-question pre,
.pads-show-page .unittest-content .markdown-question pre,
.pads-show-page .smb-markdown-preview-wrap .markdown-question pre,
.pads-show-page .written-question-page-body .markdown-question pre,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question pre,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question pre,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question pre,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question pre,
.paas-question-written-questions-edit-page .video-question-page .markdown-question pre,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question pre,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question pre,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question pre,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question pre,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question pre,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question pre,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question pre,
.paas-question-written-questions-edit-page .unittest-content .markdown-question pre,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question pre,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question pre,
.paas-question-written-questions-show-page .essay-question-page .markdown-question pre,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question pre,
.paas-question-written-questions-show-page .programming-question-page .markdown-question pre,
.paas-question-written-questions-show-page .choice-question-page .markdown-question pre,
.paas-question-written-questions-show-page .video-question-page .markdown-question pre,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question pre,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question pre,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question pre,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question pre,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question pre,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question pre,
.paas-question-written-questions-show-page .database-desc-content .markdown-question pre,
.paas-question-written-questions-show-page .unittest-content .markdown-question pre,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question pre,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question pre,
.written-pads-show-page .essay-question-page .markdown-question pre,
.written-pads-show-page .gap-filling-question-page .markdown-question pre,
.written-pads-show-page .programming-question-page .markdown-question pre,
.written-pads-show-page .choice-question-page .markdown-question pre,
.written-pads-show-page .video-question-page .markdown-question pre,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question pre,
.written-pads-show-page .paas-pad-wrap .markdown-question pre,
.written-pads-show-page .written-pad-wrap .markdown-question pre,
.written-pads-show-page .assessment-wrap .markdown-question pre,
.written-pads-show-page .mobile-question-content .markdown-question pre,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question pre,
.written-pads-show-page .database-desc-content .markdown-question pre,
.written-pads-show-page .unittest-content .markdown-question pre,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question pre,
.written-pads-show-page .written-question-page-body .markdown-question pre,
.assessments-show-page .essay-question-page .markdown-question pre,
.assessments-show-page .gap-filling-question-page .markdown-question pre,
.assessments-show-page .programming-question-page .markdown-question pre,
.assessments-show-page .choice-question-page .markdown-question pre,
.assessments-show-page .video-question-page .markdown-question pre,
.assessments-show-page .pad-vue-page .wrapper .markdown-question pre,
.assessments-show-page .paas-pad-wrap .markdown-question pre,
.assessments-show-page .written-pad-wrap .markdown-question pre,
.assessments-show-page .assessment-wrap .markdown-question pre,
.assessments-show-page .mobile-question-content .markdown-question pre,
.assessments-show-page .answer-content-markdown-wrap .markdown-question pre,
.assessments-show-page .database-desc-content .markdown-question pre,
.assessments-show-page .unittest-content .markdown-question pre,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question pre,
.assessments-show-page .written-question-page-body .markdown-question pre,
.paas-pads-show-page .essay-question-page .markdown-question pre,
.paas-pads-show-page .gap-filling-question-page .markdown-question pre,
.paas-pads-show-page .programming-question-page .markdown-question pre,
.paas-pads-show-page .choice-question-page .markdown-question pre,
.paas-pads-show-page .video-question-page .markdown-question pre,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question pre,
.paas-pads-show-page .paas-pad-wrap .markdown-question pre,
.paas-pads-show-page .written-pad-wrap .markdown-question pre,
.paas-pads-show-page .assessment-wrap .markdown-question pre,
.paas-pads-show-page .mobile-question-content .markdown-question pre,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question pre,
.paas-pads-show-page .database-desc-content .markdown-question pre,
.paas-pads-show-page .unittest-content .markdown-question pre,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question pre,
.paas-pads-show-page .written-question-page-body .markdown-question pre,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question pre,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question pre,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question pre,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question pre,
.paas-snapshot-runners-show-page .video-question-page .markdown-question pre,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question pre,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question pre,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question pre,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question pre,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question pre,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question pre,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question pre,
.paas-snapshot-runners-show-page .unittest-content .markdown-question pre,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question pre,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question pre {
  padding: 12px;
  overflow: auto;
  font-size: 85%;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}
.pads-show-page .essay-question-page .markdown-question pre > code,
.pads-show-page .gap-filling-question-page .markdown-question pre > code,
.pads-show-page .programming-question-page .markdown-question pre > code,
.pads-show-page .choice-question-page .markdown-question pre > code,
.pads-show-page .video-question-page .markdown-question pre > code,
.pads-show-page .pad-vue-page .wrapper .markdown-question pre > code,
.pads-show-page .paas-pad-wrap .markdown-question pre > code,
.pads-show-page .written-pad-wrap .markdown-question pre > code,
.pads-show-page .assessment-wrap .markdown-question pre > code,
.pads-show-page .mobile-question-content .markdown-question pre > code,
.pads-show-page .answer-content-markdown-wrap .markdown-question pre > code,
.pads-show-page .database-desc-content .markdown-question pre > code,
.pads-show-page .unittest-content .markdown-question pre > code,
.pads-show-page .smb-markdown-preview-wrap .markdown-question pre > code,
.pads-show-page .written-question-page-body .markdown-question pre > code,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question pre > code,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question pre > code,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question pre > code,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question pre > code,
.paas-question-written-questions-edit-page .video-question-page .markdown-question pre > code,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question pre > code,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question pre > code,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question pre > code,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question pre > code,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question pre > code,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question pre > code,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question pre > code,
.paas-question-written-questions-edit-page .unittest-content .markdown-question pre > code,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question pre > code,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question pre > code,
.paas-question-written-questions-show-page .essay-question-page .markdown-question pre > code,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question pre > code,
.paas-question-written-questions-show-page .programming-question-page .markdown-question pre > code,
.paas-question-written-questions-show-page .choice-question-page .markdown-question pre > code,
.paas-question-written-questions-show-page .video-question-page .markdown-question pre > code,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question pre > code,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question pre > code,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question pre > code,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question pre > code,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question pre > code,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question pre > code,
.paas-question-written-questions-show-page .database-desc-content .markdown-question pre > code,
.paas-question-written-questions-show-page .unittest-content .markdown-question pre > code,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question pre > code,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question pre > code,
.written-pads-show-page .essay-question-page .markdown-question pre > code,
.written-pads-show-page .gap-filling-question-page .markdown-question pre > code,
.written-pads-show-page .programming-question-page .markdown-question pre > code,
.written-pads-show-page .choice-question-page .markdown-question pre > code,
.written-pads-show-page .video-question-page .markdown-question pre > code,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question pre > code,
.written-pads-show-page .paas-pad-wrap .markdown-question pre > code,
.written-pads-show-page .written-pad-wrap .markdown-question pre > code,
.written-pads-show-page .assessment-wrap .markdown-question pre > code,
.written-pads-show-page .mobile-question-content .markdown-question pre > code,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question pre > code,
.written-pads-show-page .database-desc-content .markdown-question pre > code,
.written-pads-show-page .unittest-content .markdown-question pre > code,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question pre > code,
.written-pads-show-page .written-question-page-body .markdown-question pre > code,
.assessments-show-page .essay-question-page .markdown-question pre > code,
.assessments-show-page .gap-filling-question-page .markdown-question pre > code,
.assessments-show-page .programming-question-page .markdown-question pre > code,
.assessments-show-page .choice-question-page .markdown-question pre > code,
.assessments-show-page .video-question-page .markdown-question pre > code,
.assessments-show-page .pad-vue-page .wrapper .markdown-question pre > code,
.assessments-show-page .paas-pad-wrap .markdown-question pre > code,
.assessments-show-page .written-pad-wrap .markdown-question pre > code,
.assessments-show-page .assessment-wrap .markdown-question pre > code,
.assessments-show-page .mobile-question-content .markdown-question pre > code,
.assessments-show-page .answer-content-markdown-wrap .markdown-question pre > code,
.assessments-show-page .database-desc-content .markdown-question pre > code,
.assessments-show-page .unittest-content .markdown-question pre > code,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question pre > code,
.assessments-show-page .written-question-page-body .markdown-question pre > code,
.paas-pads-show-page .essay-question-page .markdown-question pre > code,
.paas-pads-show-page .gap-filling-question-page .markdown-question pre > code,
.paas-pads-show-page .programming-question-page .markdown-question pre > code,
.paas-pads-show-page .choice-question-page .markdown-question pre > code,
.paas-pads-show-page .video-question-page .markdown-question pre > code,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question pre > code,
.paas-pads-show-page .paas-pad-wrap .markdown-question pre > code,
.paas-pads-show-page .written-pad-wrap .markdown-question pre > code,
.paas-pads-show-page .assessment-wrap .markdown-question pre > code,
.paas-pads-show-page .mobile-question-content .markdown-question pre > code,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question pre > code,
.paas-pads-show-page .database-desc-content .markdown-question pre > code,
.paas-pads-show-page .unittest-content .markdown-question pre > code,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question pre > code,
.paas-pads-show-page .written-question-page-body .markdown-question pre > code,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question pre > code,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question pre > code,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question pre > code,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question pre > code,
.paas-snapshot-runners-show-page .video-question-page .markdown-question pre > code,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question pre > code,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question pre > code,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question pre > code,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question pre > code,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question pre > code,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question pre > code,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question pre > code,
.paas-snapshot-runners-show-page .unittest-content .markdown-question pre > code,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question pre > code,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question pre > code {
  background-color: rgba(27, 31, 35, 0.05);
}
.pads-show-page .essay-question-page .markdown-question.test-description-pre pre,
.pads-show-page .gap-filling-question-page .markdown-question.test-description-pre pre,
.pads-show-page .programming-question-page .markdown-question.test-description-pre pre,
.pads-show-page .choice-question-page .markdown-question.test-description-pre pre,
.pads-show-page .video-question-page .markdown-question.test-description-pre pre,
.pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre,
.pads-show-page .paas-pad-wrap .markdown-question.test-description-pre pre,
.pads-show-page .written-pad-wrap .markdown-question.test-description-pre pre,
.pads-show-page .assessment-wrap .markdown-question.test-description-pre pre,
.pads-show-page .mobile-question-content .markdown-question.test-description-pre pre,
.pads-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre,
.pads-show-page .database-desc-content .markdown-question.test-description-pre pre,
.pads-show-page .unittest-content .markdown-question.test-description-pre pre,
.pads-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre,
.pads-show-page .written-question-page-body .markdown-question.test-description-pre pre,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question.test-description-pre pre,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question.test-description-pre pre,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question.test-description-pre pre,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question.test-description-pre pre,
.paas-question-written-questions-edit-page .video-question-page .markdown-question.test-description-pre pre,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question.test-description-pre pre,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question.test-description-pre pre,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question.test-description-pre pre,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question.test-description-pre pre,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question.test-description-pre pre,
.paas-question-written-questions-edit-page .unittest-content .markdown-question.test-description-pre pre,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question.test-description-pre pre,
.paas-question-written-questions-show-page .essay-question-page .markdown-question.test-description-pre pre,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question.test-description-pre pre,
.paas-question-written-questions-show-page .programming-question-page .markdown-question.test-description-pre pre,
.paas-question-written-questions-show-page .choice-question-page .markdown-question.test-description-pre pre,
.paas-question-written-questions-show-page .video-question-page .markdown-question.test-description-pre pre,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question.test-description-pre pre,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question.test-description-pre pre,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question.test-description-pre pre,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question.test-description-pre pre,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre,
.paas-question-written-questions-show-page .database-desc-content .markdown-question.test-description-pre pre,
.paas-question-written-questions-show-page .unittest-content .markdown-question.test-description-pre pre,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question.test-description-pre pre,
.written-pads-show-page .essay-question-page .markdown-question.test-description-pre pre,
.written-pads-show-page .gap-filling-question-page .markdown-question.test-description-pre pre,
.written-pads-show-page .programming-question-page .markdown-question.test-description-pre pre,
.written-pads-show-page .choice-question-page .markdown-question.test-description-pre pre,
.written-pads-show-page .video-question-page .markdown-question.test-description-pre pre,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre,
.written-pads-show-page .paas-pad-wrap .markdown-question.test-description-pre pre,
.written-pads-show-page .written-pad-wrap .markdown-question.test-description-pre pre,
.written-pads-show-page .assessment-wrap .markdown-question.test-description-pre pre,
.written-pads-show-page .mobile-question-content .markdown-question.test-description-pre pre,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre,
.written-pads-show-page .database-desc-content .markdown-question.test-description-pre pre,
.written-pads-show-page .unittest-content .markdown-question.test-description-pre pre,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre,
.written-pads-show-page .written-question-page-body .markdown-question.test-description-pre pre,
.assessments-show-page .essay-question-page .markdown-question.test-description-pre pre,
.assessments-show-page .gap-filling-question-page .markdown-question.test-description-pre pre,
.assessments-show-page .programming-question-page .markdown-question.test-description-pre pre,
.assessments-show-page .choice-question-page .markdown-question.test-description-pre pre,
.assessments-show-page .video-question-page .markdown-question.test-description-pre pre,
.assessments-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre,
.assessments-show-page .paas-pad-wrap .markdown-question.test-description-pre pre,
.assessments-show-page .written-pad-wrap .markdown-question.test-description-pre pre,
.assessments-show-page .assessment-wrap .markdown-question.test-description-pre pre,
.assessments-show-page .mobile-question-content .markdown-question.test-description-pre pre,
.assessments-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre,
.assessments-show-page .database-desc-content .markdown-question.test-description-pre pre,
.assessments-show-page .unittest-content .markdown-question.test-description-pre pre,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre,
.assessments-show-page .written-question-page-body .markdown-question.test-description-pre pre,
.paas-pads-show-page .essay-question-page .markdown-question.test-description-pre pre,
.paas-pads-show-page .gap-filling-question-page .markdown-question.test-description-pre pre,
.paas-pads-show-page .programming-question-page .markdown-question.test-description-pre pre,
.paas-pads-show-page .choice-question-page .markdown-question.test-description-pre pre,
.paas-pads-show-page .video-question-page .markdown-question.test-description-pre pre,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre,
.paas-pads-show-page .paas-pad-wrap .markdown-question.test-description-pre pre,
.paas-pads-show-page .written-pad-wrap .markdown-question.test-description-pre pre,
.paas-pads-show-page .assessment-wrap .markdown-question.test-description-pre pre,
.paas-pads-show-page .mobile-question-content .markdown-question.test-description-pre pre,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre,
.paas-pads-show-page .database-desc-content .markdown-question.test-description-pre pre,
.paas-pads-show-page .unittest-content .markdown-question.test-description-pre pre,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre,
.paas-pads-show-page .written-question-page-body .markdown-question.test-description-pre pre,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question.test-description-pre pre,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question.test-description-pre pre,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question.test-description-pre pre,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question.test-description-pre pre,
.paas-snapshot-runners-show-page .video-question-page .markdown-question.test-description-pre pre,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question.test-description-pre pre,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question.test-description-pre pre,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question.test-description-pre pre,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question.test-description-pre pre,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question.test-description-pre pre,
.paas-snapshot-runners-show-page .unittest-content .markdown-question.test-description-pre pre,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question.test-description-pre pre {
  min-width: 100%;
  min-height: calc(100vh - 212px);
}
.pads-show-page .essay-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.pads-show-page .gap-filling-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.pads-show-page .programming-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.pads-show-page .choice-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.pads-show-page .video-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre::-webkit-scrollbar,
.pads-show-page .paas-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.pads-show-page .written-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.pads-show-page .assessment-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.pads-show-page .mobile-question-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.pads-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.pads-show-page .database-desc-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.pads-show-page .unittest-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.pads-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.pads-show-page .written-question-page-body .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .video-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .unittest-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .essay-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .programming-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .choice-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .video-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .database-desc-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .unittest-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question.test-description-pre pre::-webkit-scrollbar,
.written-pads-show-page .essay-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.written-pads-show-page .gap-filling-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.written-pads-show-page .programming-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.written-pads-show-page .choice-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.written-pads-show-page .video-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre::-webkit-scrollbar,
.written-pads-show-page .paas-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.written-pads-show-page .written-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.written-pads-show-page .assessment-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.written-pads-show-page .mobile-question-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.written-pads-show-page .database-desc-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.written-pads-show-page .unittest-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.written-pads-show-page .written-question-page-body .markdown-question.test-description-pre pre::-webkit-scrollbar,
.assessments-show-page .essay-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.assessments-show-page .gap-filling-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.assessments-show-page .programming-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.assessments-show-page .choice-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.assessments-show-page .video-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.assessments-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre::-webkit-scrollbar,
.assessments-show-page .paas-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.assessments-show-page .written-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.assessments-show-page .assessment-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.assessments-show-page .mobile-question-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.assessments-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.assessments-show-page .database-desc-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.assessments-show-page .unittest-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.assessments-show-page .written-question-page-body .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-pads-show-page .essay-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-pads-show-page .gap-filling-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-pads-show-page .programming-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-pads-show-page .choice-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-pads-show-page .video-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-pads-show-page .paas-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-pads-show-page .written-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-pads-show-page .assessment-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-pads-show-page .mobile-question-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-pads-show-page .database-desc-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-pads-show-page .unittest-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-pads-show-page .written-question-page-body .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .video-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .unittest-content .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question.test-description-pre pre::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background: transparent;
}
.pads-show-page .essay-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.pads-show-page .gap-filling-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.pads-show-page .programming-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.pads-show-page .choice-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.pads-show-page .video-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.pads-show-page .paas-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.pads-show-page .written-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.pads-show-page .assessment-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.pads-show-page .mobile-question-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.pads-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.pads-show-page .database-desc-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.pads-show-page .unittest-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.pads-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.pads-show-page .written-question-page-body .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .video-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .unittest-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .essay-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .programming-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .choice-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .video-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .database-desc-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .unittest-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.written-pads-show-page .essay-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.written-pads-show-page .gap-filling-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.written-pads-show-page .programming-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.written-pads-show-page .choice-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.written-pads-show-page .video-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.written-pads-show-page .paas-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.written-pads-show-page .written-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.written-pads-show-page .assessment-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.written-pads-show-page .mobile-question-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.written-pads-show-page .database-desc-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.written-pads-show-page .unittest-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.written-pads-show-page .written-question-page-body .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.assessments-show-page .essay-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.assessments-show-page .gap-filling-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.assessments-show-page .programming-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.assessments-show-page .choice-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.assessments-show-page .video-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.assessments-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.assessments-show-page .paas-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.assessments-show-page .written-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.assessments-show-page .assessment-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.assessments-show-page .mobile-question-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.assessments-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.assessments-show-page .database-desc-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.assessments-show-page .unittest-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.assessments-show-page .written-question-page-body .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .essay-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .gap-filling-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .programming-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .choice-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .video-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .paas-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .written-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .assessment-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .mobile-question-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .database-desc-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .unittest-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .written-question-page-body .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .video-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .unittest-content .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}
.pads-show-page .essay-question-page .markdown-question.test-description-pre.written-pad pre,
.pads-show-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre,
.pads-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre,
.pads-show-page .choice-question-page .markdown-question.test-description-pre.written-pad pre,
.pads-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre,
.pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre,
.pads-show-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre,
.pads-show-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre,
.pads-show-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre,
.pads-show-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre,
.pads-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre,
.pads-show-page .database-desc-content .markdown-question.test-description-pre.written-pad pre,
.pads-show-page .unittest-content .markdown-question.test-description-pre.written-pad pre,
.pads-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre,
.pads-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-edit-page .video-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-edit-page .unittest-content .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-show-page .essay-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-show-page .choice-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-show-page .database-desc-content .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-show-page .unittest-content .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre,
.written-pads-show-page .essay-question-page .markdown-question.test-description-pre.written-pad pre,
.written-pads-show-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre,
.written-pads-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre,
.written-pads-show-page .choice-question-page .markdown-question.test-description-pre.written-pad pre,
.written-pads-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre,
.written-pads-show-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre,
.written-pads-show-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre,
.written-pads-show-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre,
.written-pads-show-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre,
.written-pads-show-page .database-desc-content .markdown-question.test-description-pre.written-pad pre,
.written-pads-show-page .unittest-content .markdown-question.test-description-pre.written-pad pre,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre,
.written-pads-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre,
.assessments-show-page .essay-question-page .markdown-question.test-description-pre.written-pad pre,
.assessments-show-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre,
.assessments-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre,
.assessments-show-page .choice-question-page .markdown-question.test-description-pre.written-pad pre,
.assessments-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre,
.assessments-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre,
.assessments-show-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre,
.assessments-show-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre,
.assessments-show-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre,
.assessments-show-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre,
.assessments-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre,
.assessments-show-page .database-desc-content .markdown-question.test-description-pre.written-pad pre,
.assessments-show-page .unittest-content .markdown-question.test-description-pre.written-pad pre,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre,
.assessments-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre,
.paas-pads-show-page .essay-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-pads-show-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-pads-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-pads-show-page .choice-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-pads-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre,
.paas-pads-show-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-pads-show-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-pads-show-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-pads-show-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-pads-show-page .database-desc-content .markdown-question.test-description-pre.written-pad pre,
.paas-pads-show-page .unittest-content .markdown-question.test-description-pre.written-pad pre,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-pads-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-snapshot-runners-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question.test-description-pre.written-pad pre,
.paas-snapshot-runners-show-page .unittest-content .markdown-question.test-description-pre.written-pad pre,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre {
  min-width: unset;
  max-width: 100%;
  min-height: 100%;
}
.pads-show-page .essay-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.pads-show-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.pads-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.pads-show-page .choice-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.pads-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.pads-show-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.pads-show-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.pads-show-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.pads-show-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.pads-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.pads-show-page .database-desc-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.pads-show-page .unittest-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.pads-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.pads-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .video-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .unittest-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .essay-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .choice-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .database-desc-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .unittest-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.written-pads-show-page .essay-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.written-pads-show-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.written-pads-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.written-pads-show-page .choice-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.written-pads-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.written-pads-show-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.written-pads-show-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.written-pads-show-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.written-pads-show-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.written-pads-show-page .database-desc-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.written-pads-show-page .unittest-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.written-pads-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.assessments-show-page .essay-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.assessments-show-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.assessments-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.assessments-show-page .choice-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.assessments-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.assessments-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.assessments-show-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.assessments-show-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.assessments-show-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.assessments-show-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.assessments-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.assessments-show-page .database-desc-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.assessments-show-page .unittest-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.assessments-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-pads-show-page .essay-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-pads-show-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-pads-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-pads-show-page .choice-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-pads-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-pads-show-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-pads-show-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-pads-show-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-pads-show-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-pads-show-page .database-desc-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-pads-show-page .unittest-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-pads-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .unittest-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background: transparent;
}
.pads-show-page .essay-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.pads-show-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.pads-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.pads-show-page .choice-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.pads-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.pads-show-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.pads-show-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.pads-show-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.pads-show-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.pads-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.pads-show-page .database-desc-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.pads-show-page .unittest-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.pads-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.pads-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .video-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .unittest-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .essay-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .choice-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .database-desc-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .unittest-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.written-pads-show-page .essay-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.written-pads-show-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.written-pads-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.written-pads-show-page .choice-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.written-pads-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.written-pads-show-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.written-pads-show-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.written-pads-show-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.written-pads-show-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.written-pads-show-page .database-desc-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.written-pads-show-page .unittest-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.written-pads-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.assessments-show-page .essay-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.assessments-show-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.assessments-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.assessments-show-page .choice-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.assessments-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.assessments-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.assessments-show-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.assessments-show-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.assessments-show-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.assessments-show-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.assessments-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.assessments-show-page .database-desc-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.assessments-show-page .unittest-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.assessments-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .essay-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .choice-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .database-desc-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .unittest-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-pads-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .unittest-content .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
.pads-show-page .essay-question-page .markdown-question blockquote,
.pads-show-page .gap-filling-question-page .markdown-question blockquote,
.pads-show-page .programming-question-page .markdown-question blockquote,
.pads-show-page .choice-question-page .markdown-question blockquote,
.pads-show-page .video-question-page .markdown-question blockquote,
.pads-show-page .pad-vue-page .wrapper .markdown-question blockquote,
.pads-show-page .paas-pad-wrap .markdown-question blockquote,
.pads-show-page .written-pad-wrap .markdown-question blockquote,
.pads-show-page .assessment-wrap .markdown-question blockquote,
.pads-show-page .mobile-question-content .markdown-question blockquote,
.pads-show-page .answer-content-markdown-wrap .markdown-question blockquote,
.pads-show-page .database-desc-content .markdown-question blockquote,
.pads-show-page .unittest-content .markdown-question blockquote,
.pads-show-page .smb-markdown-preview-wrap .markdown-question blockquote,
.pads-show-page .written-question-page-body .markdown-question blockquote,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question blockquote,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question blockquote,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question blockquote,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question blockquote,
.paas-question-written-questions-edit-page .video-question-page .markdown-question blockquote,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question blockquote,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question blockquote,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question blockquote,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question blockquote,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question blockquote,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question blockquote,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question blockquote,
.paas-question-written-questions-edit-page .unittest-content .markdown-question blockquote,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question blockquote,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question blockquote,
.paas-question-written-questions-show-page .essay-question-page .markdown-question blockquote,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question blockquote,
.paas-question-written-questions-show-page .programming-question-page .markdown-question blockquote,
.paas-question-written-questions-show-page .choice-question-page .markdown-question blockquote,
.paas-question-written-questions-show-page .video-question-page .markdown-question blockquote,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question blockquote,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question blockquote,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question blockquote,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question blockquote,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question blockquote,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question blockquote,
.paas-question-written-questions-show-page .database-desc-content .markdown-question blockquote,
.paas-question-written-questions-show-page .unittest-content .markdown-question blockquote,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question blockquote,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question blockquote,
.written-pads-show-page .essay-question-page .markdown-question blockquote,
.written-pads-show-page .gap-filling-question-page .markdown-question blockquote,
.written-pads-show-page .programming-question-page .markdown-question blockquote,
.written-pads-show-page .choice-question-page .markdown-question blockquote,
.written-pads-show-page .video-question-page .markdown-question blockquote,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question blockquote,
.written-pads-show-page .paas-pad-wrap .markdown-question blockquote,
.written-pads-show-page .written-pad-wrap .markdown-question blockquote,
.written-pads-show-page .assessment-wrap .markdown-question blockquote,
.written-pads-show-page .mobile-question-content .markdown-question blockquote,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question blockquote,
.written-pads-show-page .database-desc-content .markdown-question blockquote,
.written-pads-show-page .unittest-content .markdown-question blockquote,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question blockquote,
.written-pads-show-page .written-question-page-body .markdown-question blockquote,
.assessments-show-page .essay-question-page .markdown-question blockquote,
.assessments-show-page .gap-filling-question-page .markdown-question blockquote,
.assessments-show-page .programming-question-page .markdown-question blockquote,
.assessments-show-page .choice-question-page .markdown-question blockquote,
.assessments-show-page .video-question-page .markdown-question blockquote,
.assessments-show-page .pad-vue-page .wrapper .markdown-question blockquote,
.assessments-show-page .paas-pad-wrap .markdown-question blockquote,
.assessments-show-page .written-pad-wrap .markdown-question blockquote,
.assessments-show-page .assessment-wrap .markdown-question blockquote,
.assessments-show-page .mobile-question-content .markdown-question blockquote,
.assessments-show-page .answer-content-markdown-wrap .markdown-question blockquote,
.assessments-show-page .database-desc-content .markdown-question blockquote,
.assessments-show-page .unittest-content .markdown-question blockquote,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question blockquote,
.assessments-show-page .written-question-page-body .markdown-question blockquote,
.paas-pads-show-page .essay-question-page .markdown-question blockquote,
.paas-pads-show-page .gap-filling-question-page .markdown-question blockquote,
.paas-pads-show-page .programming-question-page .markdown-question blockquote,
.paas-pads-show-page .choice-question-page .markdown-question blockquote,
.paas-pads-show-page .video-question-page .markdown-question blockquote,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question blockquote,
.paas-pads-show-page .paas-pad-wrap .markdown-question blockquote,
.paas-pads-show-page .written-pad-wrap .markdown-question blockquote,
.paas-pads-show-page .assessment-wrap .markdown-question blockquote,
.paas-pads-show-page .mobile-question-content .markdown-question blockquote,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question blockquote,
.paas-pads-show-page .database-desc-content .markdown-question blockquote,
.paas-pads-show-page .unittest-content .markdown-question blockquote,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question blockquote,
.paas-pads-show-page .written-question-page-body .markdown-question blockquote,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question blockquote,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question blockquote,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question blockquote,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question blockquote,
.paas-snapshot-runners-show-page .video-question-page .markdown-question blockquote,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question blockquote,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question blockquote,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question blockquote,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question blockquote,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question blockquote,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question blockquote,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question blockquote,
.paas-snapshot-runners-show-page .unittest-content .markdown-question blockquote,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question blockquote,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question blockquote {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.pads-show-page .essay-question-page .markdown-question .hljs,
.pads-show-page .gap-filling-question-page .markdown-question .hljs,
.pads-show-page .programming-question-page .markdown-question .hljs,
.pads-show-page .choice-question-page .markdown-question .hljs,
.pads-show-page .video-question-page .markdown-question .hljs,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs,
.pads-show-page .paas-pad-wrap .markdown-question .hljs,
.pads-show-page .written-pad-wrap .markdown-question .hljs,
.pads-show-page .assessment-wrap .markdown-question .hljs,
.pads-show-page .mobile-question-content .markdown-question .hljs,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs,
.pads-show-page .database-desc-content .markdown-question .hljs,
.pads-show-page .unittest-content .markdown-question .hljs,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs,
.pads-show-page .written-question-page-body .markdown-question .hljs,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs,
.written-pads-show-page .essay-question-page .markdown-question .hljs,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs,
.written-pads-show-page .programming-question-page .markdown-question .hljs,
.written-pads-show-page .choice-question-page .markdown-question .hljs,
.written-pads-show-page .video-question-page .markdown-question .hljs,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs,
.written-pads-show-page .assessment-wrap .markdown-question .hljs,
.written-pads-show-page .mobile-question-content .markdown-question .hljs,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs,
.written-pads-show-page .database-desc-content .markdown-question .hljs,
.written-pads-show-page .unittest-content .markdown-question .hljs,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs,
.written-pads-show-page .written-question-page-body .markdown-question .hljs,
.assessments-show-page .essay-question-page .markdown-question .hljs,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs,
.assessments-show-page .programming-question-page .markdown-question .hljs,
.assessments-show-page .choice-question-page .markdown-question .hljs,
.assessments-show-page .video-question-page .markdown-question .hljs,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs,
.assessments-show-page .written-pad-wrap .markdown-question .hljs,
.assessments-show-page .assessment-wrap .markdown-question .hljs,
.assessments-show-page .mobile-question-content .markdown-question .hljs,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs,
.assessments-show-page .database-desc-content .markdown-question .hljs,
.assessments-show-page .unittest-content .markdown-question .hljs,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs,
.assessments-show-page .written-question-page-body .markdown-question .hljs,
.paas-pads-show-page .essay-question-page .markdown-question .hljs,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs,
.paas-pads-show-page .programming-question-page .markdown-question .hljs,
.paas-pads-show-page .choice-question-page .markdown-question .hljs,
.paas-pads-show-page .video-question-page .markdown-question .hljs,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs,
.paas-pads-show-page .database-desc-content .markdown-question .hljs,
.paas-pads-show-page .unittest-content .markdown-question .hljs,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  background: #272822;
  color: #ddd;
}
.pads-show-page .essay-question-page .markdown-question .hljs-tag,
.pads-show-page .essay-question-page .markdown-question .hljs-keyword,
.pads-show-page .essay-question-page .markdown-question .hljs-selector-tag,
.pads-show-page .essay-question-page .markdown-question .hljs-literal,
.pads-show-page .essay-question-page .markdown-question .hljs-strong,
.pads-show-page .essay-question-page .markdown-question .hljs-name,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-tag,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-keyword,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-selector-tag,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-literal,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-strong,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-name,
.pads-show-page .programming-question-page .markdown-question .hljs-tag,
.pads-show-page .programming-question-page .markdown-question .hljs-keyword,
.pads-show-page .programming-question-page .markdown-question .hljs-selector-tag,
.pads-show-page .programming-question-page .markdown-question .hljs-literal,
.pads-show-page .programming-question-page .markdown-question .hljs-strong,
.pads-show-page .programming-question-page .markdown-question .hljs-name,
.pads-show-page .choice-question-page .markdown-question .hljs-tag,
.pads-show-page .choice-question-page .markdown-question .hljs-keyword,
.pads-show-page .choice-question-page .markdown-question .hljs-selector-tag,
.pads-show-page .choice-question-page .markdown-question .hljs-literal,
.pads-show-page .choice-question-page .markdown-question .hljs-strong,
.pads-show-page .choice-question-page .markdown-question .hljs-name,
.pads-show-page .video-question-page .markdown-question .hljs-tag,
.pads-show-page .video-question-page .markdown-question .hljs-keyword,
.pads-show-page .video-question-page .markdown-question .hljs-selector-tag,
.pads-show-page .video-question-page .markdown-question .hljs-literal,
.pads-show-page .video-question-page .markdown-question .hljs-strong,
.pads-show-page .video-question-page .markdown-question .hljs-name,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-tag,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-keyword,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-tag,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-literal,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-strong,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-name,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-tag,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-keyword,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-selector-tag,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-literal,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-strong,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-name,
.pads-show-page .written-pad-wrap .markdown-question .hljs-tag,
.pads-show-page .written-pad-wrap .markdown-question .hljs-keyword,
.pads-show-page .written-pad-wrap .markdown-question .hljs-selector-tag,
.pads-show-page .written-pad-wrap .markdown-question .hljs-literal,
.pads-show-page .written-pad-wrap .markdown-question .hljs-strong,
.pads-show-page .written-pad-wrap .markdown-question .hljs-name,
.pads-show-page .assessment-wrap .markdown-question .hljs-tag,
.pads-show-page .assessment-wrap .markdown-question .hljs-keyword,
.pads-show-page .assessment-wrap .markdown-question .hljs-selector-tag,
.pads-show-page .assessment-wrap .markdown-question .hljs-literal,
.pads-show-page .assessment-wrap .markdown-question .hljs-strong,
.pads-show-page .assessment-wrap .markdown-question .hljs-name,
.pads-show-page .mobile-question-content .markdown-question .hljs-tag,
.pads-show-page .mobile-question-content .markdown-question .hljs-keyword,
.pads-show-page .mobile-question-content .markdown-question .hljs-selector-tag,
.pads-show-page .mobile-question-content .markdown-question .hljs-literal,
.pads-show-page .mobile-question-content .markdown-question .hljs-strong,
.pads-show-page .mobile-question-content .markdown-question .hljs-name,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-tag,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-keyword,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-tag,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-literal,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-strong,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-name,
.pads-show-page .database-desc-content .markdown-question .hljs-tag,
.pads-show-page .database-desc-content .markdown-question .hljs-keyword,
.pads-show-page .database-desc-content .markdown-question .hljs-selector-tag,
.pads-show-page .database-desc-content .markdown-question .hljs-literal,
.pads-show-page .database-desc-content .markdown-question .hljs-strong,
.pads-show-page .database-desc-content .markdown-question .hljs-name,
.pads-show-page .unittest-content .markdown-question .hljs-tag,
.pads-show-page .unittest-content .markdown-question .hljs-keyword,
.pads-show-page .unittest-content .markdown-question .hljs-selector-tag,
.pads-show-page .unittest-content .markdown-question .hljs-literal,
.pads-show-page .unittest-content .markdown-question .hljs-strong,
.pads-show-page .unittest-content .markdown-question .hljs-name,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-tag,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-keyword,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-tag,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-literal,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-strong,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-name,
.pads-show-page .written-question-page-body .markdown-question .hljs-tag,
.pads-show-page .written-question-page-body .markdown-question .hljs-keyword,
.pads-show-page .written-question-page-body .markdown-question .hljs-selector-tag,
.pads-show-page .written-question-page-body .markdown-question .hljs-literal,
.pads-show-page .written-question-page-body .markdown-question .hljs-strong,
.pads-show-page .written-question-page-body .markdown-question .hljs-name,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-tag,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-strong,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-name,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-tag,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-strong,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-name,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-tag,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-strong,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-name,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-tag,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-strong,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-name,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-tag,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-strong,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-name,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-tag,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-strong,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-name,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-tag,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-strong,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-name,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-tag,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-strong,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-name,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-tag,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-strong,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-name,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-tag,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-strong,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-name,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-tag,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-strong,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-name,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-tag,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-strong,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-name,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-tag,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-strong,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-name,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-tag,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-strong,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-name,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-tag,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-strong,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-name,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-tag,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-strong,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-name,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-tag,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-strong,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-name,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-tag,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-strong,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-name,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-tag,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-strong,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-name,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-tag,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-strong,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-name,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-tag,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-strong,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-name,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-tag,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-strong,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-name,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-tag,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-strong,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-name,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-tag,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-strong,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-name,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-tag,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-strong,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-name,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-tag,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-strong,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-name,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-tag,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-strong,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-name,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-tag,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-strong,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-name,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-tag,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-strong,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-name,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-tag,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-strong,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-name,
.written-pads-show-page .essay-question-page .markdown-question .hljs-tag,
.written-pads-show-page .essay-question-page .markdown-question .hljs-keyword,
.written-pads-show-page .essay-question-page .markdown-question .hljs-selector-tag,
.written-pads-show-page .essay-question-page .markdown-question .hljs-literal,
.written-pads-show-page .essay-question-page .markdown-question .hljs-strong,
.written-pads-show-page .essay-question-page .markdown-question .hljs-name,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-tag,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-keyword,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-selector-tag,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-literal,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-strong,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-name,
.written-pads-show-page .programming-question-page .markdown-question .hljs-tag,
.written-pads-show-page .programming-question-page .markdown-question .hljs-keyword,
.written-pads-show-page .programming-question-page .markdown-question .hljs-selector-tag,
.written-pads-show-page .programming-question-page .markdown-question .hljs-literal,
.written-pads-show-page .programming-question-page .markdown-question .hljs-strong,
.written-pads-show-page .programming-question-page .markdown-question .hljs-name,
.written-pads-show-page .choice-question-page .markdown-question .hljs-tag,
.written-pads-show-page .choice-question-page .markdown-question .hljs-keyword,
.written-pads-show-page .choice-question-page .markdown-question .hljs-selector-tag,
.written-pads-show-page .choice-question-page .markdown-question .hljs-literal,
.written-pads-show-page .choice-question-page .markdown-question .hljs-strong,
.written-pads-show-page .choice-question-page .markdown-question .hljs-name,
.written-pads-show-page .video-question-page .markdown-question .hljs-tag,
.written-pads-show-page .video-question-page .markdown-question .hljs-keyword,
.written-pads-show-page .video-question-page .markdown-question .hljs-selector-tag,
.written-pads-show-page .video-question-page .markdown-question .hljs-literal,
.written-pads-show-page .video-question-page .markdown-question .hljs-strong,
.written-pads-show-page .video-question-page .markdown-question .hljs-name,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-tag,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-keyword,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-tag,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-literal,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-strong,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-name,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-tag,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-keyword,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-selector-tag,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-literal,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-strong,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-name,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-tag,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-keyword,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-selector-tag,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-literal,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-strong,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-name,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-tag,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-keyword,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-selector-tag,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-literal,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-strong,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-name,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-tag,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-keyword,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-selector-tag,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-literal,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-strong,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-name,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-tag,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-keyword,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-tag,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-literal,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-strong,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-name,
.written-pads-show-page .database-desc-content .markdown-question .hljs-tag,
.written-pads-show-page .database-desc-content .markdown-question .hljs-keyword,
.written-pads-show-page .database-desc-content .markdown-question .hljs-selector-tag,
.written-pads-show-page .database-desc-content .markdown-question .hljs-literal,
.written-pads-show-page .database-desc-content .markdown-question .hljs-strong,
.written-pads-show-page .database-desc-content .markdown-question .hljs-name,
.written-pads-show-page .unittest-content .markdown-question .hljs-tag,
.written-pads-show-page .unittest-content .markdown-question .hljs-keyword,
.written-pads-show-page .unittest-content .markdown-question .hljs-selector-tag,
.written-pads-show-page .unittest-content .markdown-question .hljs-literal,
.written-pads-show-page .unittest-content .markdown-question .hljs-strong,
.written-pads-show-page .unittest-content .markdown-question .hljs-name,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-tag,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-keyword,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-tag,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-literal,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-strong,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-name,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-tag,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-keyword,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-selector-tag,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-literal,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-strong,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-name,
.assessments-show-page .essay-question-page .markdown-question .hljs-tag,
.assessments-show-page .essay-question-page .markdown-question .hljs-keyword,
.assessments-show-page .essay-question-page .markdown-question .hljs-selector-tag,
.assessments-show-page .essay-question-page .markdown-question .hljs-literal,
.assessments-show-page .essay-question-page .markdown-question .hljs-strong,
.assessments-show-page .essay-question-page .markdown-question .hljs-name,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-tag,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-keyword,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-selector-tag,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-literal,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-strong,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-name,
.assessments-show-page .programming-question-page .markdown-question .hljs-tag,
.assessments-show-page .programming-question-page .markdown-question .hljs-keyword,
.assessments-show-page .programming-question-page .markdown-question .hljs-selector-tag,
.assessments-show-page .programming-question-page .markdown-question .hljs-literal,
.assessments-show-page .programming-question-page .markdown-question .hljs-strong,
.assessments-show-page .programming-question-page .markdown-question .hljs-name,
.assessments-show-page .choice-question-page .markdown-question .hljs-tag,
.assessments-show-page .choice-question-page .markdown-question .hljs-keyword,
.assessments-show-page .choice-question-page .markdown-question .hljs-selector-tag,
.assessments-show-page .choice-question-page .markdown-question .hljs-literal,
.assessments-show-page .choice-question-page .markdown-question .hljs-strong,
.assessments-show-page .choice-question-page .markdown-question .hljs-name,
.assessments-show-page .video-question-page .markdown-question .hljs-tag,
.assessments-show-page .video-question-page .markdown-question .hljs-keyword,
.assessments-show-page .video-question-page .markdown-question .hljs-selector-tag,
.assessments-show-page .video-question-page .markdown-question .hljs-literal,
.assessments-show-page .video-question-page .markdown-question .hljs-strong,
.assessments-show-page .video-question-page .markdown-question .hljs-name,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-tag,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-keyword,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-tag,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-literal,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-strong,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-name,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-tag,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-keyword,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-selector-tag,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-literal,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-strong,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-name,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-tag,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-keyword,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-selector-tag,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-literal,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-strong,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-name,
.assessments-show-page .assessment-wrap .markdown-question .hljs-tag,
.assessments-show-page .assessment-wrap .markdown-question .hljs-keyword,
.assessments-show-page .assessment-wrap .markdown-question .hljs-selector-tag,
.assessments-show-page .assessment-wrap .markdown-question .hljs-literal,
.assessments-show-page .assessment-wrap .markdown-question .hljs-strong,
.assessments-show-page .assessment-wrap .markdown-question .hljs-name,
.assessments-show-page .mobile-question-content .markdown-question .hljs-tag,
.assessments-show-page .mobile-question-content .markdown-question .hljs-keyword,
.assessments-show-page .mobile-question-content .markdown-question .hljs-selector-tag,
.assessments-show-page .mobile-question-content .markdown-question .hljs-literal,
.assessments-show-page .mobile-question-content .markdown-question .hljs-strong,
.assessments-show-page .mobile-question-content .markdown-question .hljs-name,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-tag,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-keyword,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-tag,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-literal,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-strong,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-name,
.assessments-show-page .database-desc-content .markdown-question .hljs-tag,
.assessments-show-page .database-desc-content .markdown-question .hljs-keyword,
.assessments-show-page .database-desc-content .markdown-question .hljs-selector-tag,
.assessments-show-page .database-desc-content .markdown-question .hljs-literal,
.assessments-show-page .database-desc-content .markdown-question .hljs-strong,
.assessments-show-page .database-desc-content .markdown-question .hljs-name,
.assessments-show-page .unittest-content .markdown-question .hljs-tag,
.assessments-show-page .unittest-content .markdown-question .hljs-keyword,
.assessments-show-page .unittest-content .markdown-question .hljs-selector-tag,
.assessments-show-page .unittest-content .markdown-question .hljs-literal,
.assessments-show-page .unittest-content .markdown-question .hljs-strong,
.assessments-show-page .unittest-content .markdown-question .hljs-name,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-tag,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-keyword,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-tag,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-literal,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-strong,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-name,
.assessments-show-page .written-question-page-body .markdown-question .hljs-tag,
.assessments-show-page .written-question-page-body .markdown-question .hljs-keyword,
.assessments-show-page .written-question-page-body .markdown-question .hljs-selector-tag,
.assessments-show-page .written-question-page-body .markdown-question .hljs-literal,
.assessments-show-page .written-question-page-body .markdown-question .hljs-strong,
.assessments-show-page .written-question-page-body .markdown-question .hljs-name,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-tag,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-keyword,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-selector-tag,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-literal,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-strong,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-name,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-tag,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-keyword,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-selector-tag,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-literal,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-strong,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-name,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-tag,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-keyword,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-selector-tag,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-literal,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-strong,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-name,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-tag,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-keyword,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-selector-tag,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-literal,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-strong,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-name,
.paas-pads-show-page .video-question-page .markdown-question .hljs-tag,
.paas-pads-show-page .video-question-page .markdown-question .hljs-keyword,
.paas-pads-show-page .video-question-page .markdown-question .hljs-selector-tag,
.paas-pads-show-page .video-question-page .markdown-question .hljs-literal,
.paas-pads-show-page .video-question-page .markdown-question .hljs-strong,
.paas-pads-show-page .video-question-page .markdown-question .hljs-name,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-tag,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-keyword,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-tag,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-literal,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-strong,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-name,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-tag,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-keyword,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-selector-tag,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-literal,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-strong,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-name,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-tag,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-keyword,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-selector-tag,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-literal,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-strong,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-name,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-tag,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-keyword,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-selector-tag,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-literal,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-strong,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-name,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-tag,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-keyword,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-selector-tag,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-literal,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-strong,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-name,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-tag,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-keyword,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-tag,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-literal,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-strong,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-name,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-tag,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-keyword,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-selector-tag,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-literal,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-strong,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-name,
.paas-pads-show-page .unittest-content .markdown-question .hljs-tag,
.paas-pads-show-page .unittest-content .markdown-question .hljs-keyword,
.paas-pads-show-page .unittest-content .markdown-question .hljs-selector-tag,
.paas-pads-show-page .unittest-content .markdown-question .hljs-literal,
.paas-pads-show-page .unittest-content .markdown-question .hljs-strong,
.paas-pads-show-page .unittest-content .markdown-question .hljs-name,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-tag,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-keyword,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-tag,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-literal,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-strong,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-name,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-tag,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-keyword,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-selector-tag,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-literal,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-strong,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-name,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-tag,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-strong,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-name,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-tag,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-strong,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-name,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-tag,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-strong,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-name,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-tag,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-strong,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-name,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-tag,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-strong,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-name,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-tag,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-strong,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-name,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-tag,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-strong,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-name,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-tag,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-strong,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-name,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-tag,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-strong,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-name,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-tag,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-strong,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-name,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-tag,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-strong,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-name,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-tag,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-strong,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-name,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-tag,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-strong,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-name,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-tag,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-strong,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-name,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-tag,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-strong,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-name {
  color: #f92672;
}
.pads-show-page .essay-question-page .markdown-question .hljs-code,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-code,
.pads-show-page .programming-question-page .markdown-question .hljs-code,
.pads-show-page .choice-question-page .markdown-question .hljs-code,
.pads-show-page .video-question-page .markdown-question .hljs-code,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-code,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-code,
.pads-show-page .written-pad-wrap .markdown-question .hljs-code,
.pads-show-page .assessment-wrap .markdown-question .hljs-code,
.pads-show-page .mobile-question-content .markdown-question .hljs-code,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-code,
.pads-show-page .database-desc-content .markdown-question .hljs-code,
.pads-show-page .unittest-content .markdown-question .hljs-code,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-code,
.pads-show-page .written-question-page-body .markdown-question .hljs-code,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-code,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-code,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-code,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-code,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-code,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-code,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-code,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-code,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-code,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-code,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-code,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-code,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-code,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-code,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-code,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-code,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-code,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-code,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-code,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-code,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-code,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-code,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-code,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-code,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-code,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-code,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-code,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-code,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-code,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-code,
.written-pads-show-page .essay-question-page .markdown-question .hljs-code,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-code,
.written-pads-show-page .programming-question-page .markdown-question .hljs-code,
.written-pads-show-page .choice-question-page .markdown-question .hljs-code,
.written-pads-show-page .video-question-page .markdown-question .hljs-code,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-code,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-code,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-code,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-code,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-code,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-code,
.written-pads-show-page .database-desc-content .markdown-question .hljs-code,
.written-pads-show-page .unittest-content .markdown-question .hljs-code,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-code,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-code,
.assessments-show-page .essay-question-page .markdown-question .hljs-code,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-code,
.assessments-show-page .programming-question-page .markdown-question .hljs-code,
.assessments-show-page .choice-question-page .markdown-question .hljs-code,
.assessments-show-page .video-question-page .markdown-question .hljs-code,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-code,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-code,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-code,
.assessments-show-page .assessment-wrap .markdown-question .hljs-code,
.assessments-show-page .mobile-question-content .markdown-question .hljs-code,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-code,
.assessments-show-page .database-desc-content .markdown-question .hljs-code,
.assessments-show-page .unittest-content .markdown-question .hljs-code,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-code,
.assessments-show-page .written-question-page-body .markdown-question .hljs-code,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-code,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-code,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-code,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-code,
.paas-pads-show-page .video-question-page .markdown-question .hljs-code,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-code,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-code,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-code,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-code,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-code,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-code,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-code,
.paas-pads-show-page .unittest-content .markdown-question .hljs-code,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-code,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-code,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-code,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-code,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-code,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-code,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-code,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-code,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-code,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-code,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-code,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-code,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-code,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-code,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-code,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-code,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-code {
  color: #66d9ef;
}
.pads-show-page .essay-question-page .markdown-question .hljs-class .hljs-title,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-class .hljs-title,
.pads-show-page .programming-question-page .markdown-question .hljs-class .hljs-title,
.pads-show-page .choice-question-page .markdown-question .hljs-class .hljs-title,
.pads-show-page .video-question-page .markdown-question .hljs-class .hljs-title,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-class .hljs-title,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-class .hljs-title,
.pads-show-page .written-pad-wrap .markdown-question .hljs-class .hljs-title,
.pads-show-page .assessment-wrap .markdown-question .hljs-class .hljs-title,
.pads-show-page .mobile-question-content .markdown-question .hljs-class .hljs-title,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-class .hljs-title,
.pads-show-page .database-desc-content .markdown-question .hljs-class .hljs-title,
.pads-show-page .unittest-content .markdown-question .hljs-class .hljs-title,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-class .hljs-title,
.pads-show-page .written-question-page-body .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-class .hljs-title,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-class .hljs-title,
.written-pads-show-page .essay-question-page .markdown-question .hljs-class .hljs-title,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-class .hljs-title,
.written-pads-show-page .programming-question-page .markdown-question .hljs-class .hljs-title,
.written-pads-show-page .choice-question-page .markdown-question .hljs-class .hljs-title,
.written-pads-show-page .video-question-page .markdown-question .hljs-class .hljs-title,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-class .hljs-title,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-class .hljs-title,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-class .hljs-title,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-class .hljs-title,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-class .hljs-title,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-class .hljs-title,
.written-pads-show-page .database-desc-content .markdown-question .hljs-class .hljs-title,
.written-pads-show-page .unittest-content .markdown-question .hljs-class .hljs-title,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-class .hljs-title,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-class .hljs-title,
.assessments-show-page .essay-question-page .markdown-question .hljs-class .hljs-title,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-class .hljs-title,
.assessments-show-page .programming-question-page .markdown-question .hljs-class .hljs-title,
.assessments-show-page .choice-question-page .markdown-question .hljs-class .hljs-title,
.assessments-show-page .video-question-page .markdown-question .hljs-class .hljs-title,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-class .hljs-title,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-class .hljs-title,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-class .hljs-title,
.assessments-show-page .assessment-wrap .markdown-question .hljs-class .hljs-title,
.assessments-show-page .mobile-question-content .markdown-question .hljs-class .hljs-title,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-class .hljs-title,
.assessments-show-page .database-desc-content .markdown-question .hljs-class .hljs-title,
.assessments-show-page .unittest-content .markdown-question .hljs-class .hljs-title,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-class .hljs-title,
.assessments-show-page .written-question-page-body .markdown-question .hljs-class .hljs-title,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-class .hljs-title,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-class .hljs-title,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-class .hljs-title,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-class .hljs-title,
.paas-pads-show-page .video-question-page .markdown-question .hljs-class .hljs-title,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-class .hljs-title,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-class .hljs-title,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-class .hljs-title,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-class .hljs-title,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-class .hljs-title,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-class .hljs-title,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-class .hljs-title,
.paas-pads-show-page .unittest-content .markdown-question .hljs-class .hljs-title,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-class .hljs-title,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-class .hljs-title,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-class .hljs-title,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-class .hljs-title,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-class .hljs-title,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-class .hljs-title,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-class .hljs-title,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-class .hljs-title,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-class .hljs-title,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-class .hljs-title,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-class .hljs-title,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-class .hljs-title,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-class .hljs-title,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-class .hljs-title,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-class .hljs-title,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-class .hljs-title,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-class .hljs-title {
  color: white;
}
.pads-show-page .essay-question-page .markdown-question .hljs-attribute,
.pads-show-page .essay-question-page .markdown-question .hljs-symbol,
.pads-show-page .essay-question-page .markdown-question .hljs-regexp,
.pads-show-page .essay-question-page .markdown-question .hljs-link,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-attribute,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-symbol,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-regexp,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-link,
.pads-show-page .programming-question-page .markdown-question .hljs-attribute,
.pads-show-page .programming-question-page .markdown-question .hljs-symbol,
.pads-show-page .programming-question-page .markdown-question .hljs-regexp,
.pads-show-page .programming-question-page .markdown-question .hljs-link,
.pads-show-page .choice-question-page .markdown-question .hljs-attribute,
.pads-show-page .choice-question-page .markdown-question .hljs-symbol,
.pads-show-page .choice-question-page .markdown-question .hljs-regexp,
.pads-show-page .choice-question-page .markdown-question .hljs-link,
.pads-show-page .video-question-page .markdown-question .hljs-attribute,
.pads-show-page .video-question-page .markdown-question .hljs-symbol,
.pads-show-page .video-question-page .markdown-question .hljs-regexp,
.pads-show-page .video-question-page .markdown-question .hljs-link,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-attribute,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-symbol,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-regexp,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-link,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-attribute,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-symbol,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-regexp,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-link,
.pads-show-page .written-pad-wrap .markdown-question .hljs-attribute,
.pads-show-page .written-pad-wrap .markdown-question .hljs-symbol,
.pads-show-page .written-pad-wrap .markdown-question .hljs-regexp,
.pads-show-page .written-pad-wrap .markdown-question .hljs-link,
.pads-show-page .assessment-wrap .markdown-question .hljs-attribute,
.pads-show-page .assessment-wrap .markdown-question .hljs-symbol,
.pads-show-page .assessment-wrap .markdown-question .hljs-regexp,
.pads-show-page .assessment-wrap .markdown-question .hljs-link,
.pads-show-page .mobile-question-content .markdown-question .hljs-attribute,
.pads-show-page .mobile-question-content .markdown-question .hljs-symbol,
.pads-show-page .mobile-question-content .markdown-question .hljs-regexp,
.pads-show-page .mobile-question-content .markdown-question .hljs-link,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-attribute,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-symbol,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-regexp,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-link,
.pads-show-page .database-desc-content .markdown-question .hljs-attribute,
.pads-show-page .database-desc-content .markdown-question .hljs-symbol,
.pads-show-page .database-desc-content .markdown-question .hljs-regexp,
.pads-show-page .database-desc-content .markdown-question .hljs-link,
.pads-show-page .unittest-content .markdown-question .hljs-attribute,
.pads-show-page .unittest-content .markdown-question .hljs-symbol,
.pads-show-page .unittest-content .markdown-question .hljs-regexp,
.pads-show-page .unittest-content .markdown-question .hljs-link,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-attribute,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-symbol,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-regexp,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-link,
.pads-show-page .written-question-page-body .markdown-question .hljs-attribute,
.pads-show-page .written-question-page-body .markdown-question .hljs-symbol,
.pads-show-page .written-question-page-body .markdown-question .hljs-regexp,
.pads-show-page .written-question-page-body .markdown-question .hljs-link,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-attribute,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-symbol,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-regexp,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-link,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-attribute,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-symbol,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-regexp,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-link,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-attribute,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-symbol,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-regexp,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-link,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-attribute,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-symbol,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-regexp,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-link,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-attribute,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-symbol,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-regexp,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-link,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-attribute,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-symbol,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-regexp,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-link,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-attribute,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-symbol,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-regexp,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-link,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-attribute,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-symbol,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-regexp,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-link,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-attribute,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-symbol,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-regexp,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-link,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-attribute,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-symbol,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-regexp,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-link,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-attribute,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-symbol,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-regexp,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-link,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-attribute,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-symbol,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-regexp,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-link,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-attribute,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-symbol,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-regexp,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-link,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-attribute,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-symbol,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-regexp,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-link,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-attribute,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-symbol,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-regexp,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-link,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-attribute,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-symbol,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-regexp,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-link,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-attribute,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-symbol,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-regexp,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-link,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-attribute,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-symbol,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-regexp,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-link,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-attribute,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-symbol,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-regexp,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-link,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-attribute,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-symbol,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-regexp,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-link,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-attribute,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-symbol,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-regexp,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-link,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-attribute,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-symbol,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-regexp,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-link,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-attribute,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-symbol,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-regexp,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-link,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-attribute,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-symbol,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-regexp,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-link,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-attribute,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-symbol,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-regexp,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-link,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-attribute,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-symbol,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-regexp,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-link,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-attribute,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-symbol,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-regexp,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-link,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-attribute,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-symbol,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-regexp,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-link,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-attribute,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-symbol,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-regexp,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-link,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-attribute,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-symbol,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-regexp,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-link,
.written-pads-show-page .essay-question-page .markdown-question .hljs-attribute,
.written-pads-show-page .essay-question-page .markdown-question .hljs-symbol,
.written-pads-show-page .essay-question-page .markdown-question .hljs-regexp,
.written-pads-show-page .essay-question-page .markdown-question .hljs-link,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-attribute,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-symbol,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-regexp,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-link,
.written-pads-show-page .programming-question-page .markdown-question .hljs-attribute,
.written-pads-show-page .programming-question-page .markdown-question .hljs-symbol,
.written-pads-show-page .programming-question-page .markdown-question .hljs-regexp,
.written-pads-show-page .programming-question-page .markdown-question .hljs-link,
.written-pads-show-page .choice-question-page .markdown-question .hljs-attribute,
.written-pads-show-page .choice-question-page .markdown-question .hljs-symbol,
.written-pads-show-page .choice-question-page .markdown-question .hljs-regexp,
.written-pads-show-page .choice-question-page .markdown-question .hljs-link,
.written-pads-show-page .video-question-page .markdown-question .hljs-attribute,
.written-pads-show-page .video-question-page .markdown-question .hljs-symbol,
.written-pads-show-page .video-question-page .markdown-question .hljs-regexp,
.written-pads-show-page .video-question-page .markdown-question .hljs-link,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-attribute,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-symbol,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-regexp,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-link,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-attribute,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-symbol,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-regexp,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-link,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-attribute,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-symbol,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-regexp,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-link,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-attribute,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-symbol,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-regexp,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-link,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-attribute,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-symbol,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-regexp,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-link,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-attribute,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-symbol,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-regexp,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-link,
.written-pads-show-page .database-desc-content .markdown-question .hljs-attribute,
.written-pads-show-page .database-desc-content .markdown-question .hljs-symbol,
.written-pads-show-page .database-desc-content .markdown-question .hljs-regexp,
.written-pads-show-page .database-desc-content .markdown-question .hljs-link,
.written-pads-show-page .unittest-content .markdown-question .hljs-attribute,
.written-pads-show-page .unittest-content .markdown-question .hljs-symbol,
.written-pads-show-page .unittest-content .markdown-question .hljs-regexp,
.written-pads-show-page .unittest-content .markdown-question .hljs-link,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-attribute,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-symbol,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-regexp,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-link,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-attribute,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-symbol,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-regexp,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-link,
.assessments-show-page .essay-question-page .markdown-question .hljs-attribute,
.assessments-show-page .essay-question-page .markdown-question .hljs-symbol,
.assessments-show-page .essay-question-page .markdown-question .hljs-regexp,
.assessments-show-page .essay-question-page .markdown-question .hljs-link,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-attribute,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-symbol,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-regexp,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-link,
.assessments-show-page .programming-question-page .markdown-question .hljs-attribute,
.assessments-show-page .programming-question-page .markdown-question .hljs-symbol,
.assessments-show-page .programming-question-page .markdown-question .hljs-regexp,
.assessments-show-page .programming-question-page .markdown-question .hljs-link,
.assessments-show-page .choice-question-page .markdown-question .hljs-attribute,
.assessments-show-page .choice-question-page .markdown-question .hljs-symbol,
.assessments-show-page .choice-question-page .markdown-question .hljs-regexp,
.assessments-show-page .choice-question-page .markdown-question .hljs-link,
.assessments-show-page .video-question-page .markdown-question .hljs-attribute,
.assessments-show-page .video-question-page .markdown-question .hljs-symbol,
.assessments-show-page .video-question-page .markdown-question .hljs-regexp,
.assessments-show-page .video-question-page .markdown-question .hljs-link,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-attribute,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-symbol,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-regexp,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-link,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-attribute,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-symbol,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-regexp,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-link,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-attribute,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-symbol,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-regexp,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-link,
.assessments-show-page .assessment-wrap .markdown-question .hljs-attribute,
.assessments-show-page .assessment-wrap .markdown-question .hljs-symbol,
.assessments-show-page .assessment-wrap .markdown-question .hljs-regexp,
.assessments-show-page .assessment-wrap .markdown-question .hljs-link,
.assessments-show-page .mobile-question-content .markdown-question .hljs-attribute,
.assessments-show-page .mobile-question-content .markdown-question .hljs-symbol,
.assessments-show-page .mobile-question-content .markdown-question .hljs-regexp,
.assessments-show-page .mobile-question-content .markdown-question .hljs-link,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-attribute,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-symbol,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-regexp,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-link,
.assessments-show-page .database-desc-content .markdown-question .hljs-attribute,
.assessments-show-page .database-desc-content .markdown-question .hljs-symbol,
.assessments-show-page .database-desc-content .markdown-question .hljs-regexp,
.assessments-show-page .database-desc-content .markdown-question .hljs-link,
.assessments-show-page .unittest-content .markdown-question .hljs-attribute,
.assessments-show-page .unittest-content .markdown-question .hljs-symbol,
.assessments-show-page .unittest-content .markdown-question .hljs-regexp,
.assessments-show-page .unittest-content .markdown-question .hljs-link,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-attribute,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-symbol,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-regexp,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-link,
.assessments-show-page .written-question-page-body .markdown-question .hljs-attribute,
.assessments-show-page .written-question-page-body .markdown-question .hljs-symbol,
.assessments-show-page .written-question-page-body .markdown-question .hljs-regexp,
.assessments-show-page .written-question-page-body .markdown-question .hljs-link,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-attribute,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-symbol,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-regexp,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-link,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-attribute,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-symbol,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-regexp,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-link,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-attribute,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-symbol,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-regexp,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-link,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-attribute,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-symbol,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-regexp,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-link,
.paas-pads-show-page .video-question-page .markdown-question .hljs-attribute,
.paas-pads-show-page .video-question-page .markdown-question .hljs-symbol,
.paas-pads-show-page .video-question-page .markdown-question .hljs-regexp,
.paas-pads-show-page .video-question-page .markdown-question .hljs-link,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-attribute,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-symbol,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-regexp,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-link,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-attribute,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-symbol,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-regexp,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-link,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-attribute,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-symbol,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-regexp,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-link,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-attribute,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-symbol,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-regexp,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-link,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-attribute,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-symbol,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-regexp,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-link,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-attribute,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-symbol,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-regexp,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-link,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-attribute,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-symbol,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-regexp,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-link,
.paas-pads-show-page .unittest-content .markdown-question .hljs-attribute,
.paas-pads-show-page .unittest-content .markdown-question .hljs-symbol,
.paas-pads-show-page .unittest-content .markdown-question .hljs-regexp,
.paas-pads-show-page .unittest-content .markdown-question .hljs-link,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-attribute,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-symbol,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-regexp,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-link,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-attribute,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-symbol,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-regexp,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-link,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-attribute,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-symbol,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-regexp,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-link,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-attribute,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-symbol,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-regexp,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-link,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-attribute,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-symbol,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-regexp,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-link,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-attribute,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-symbol,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-regexp,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-link,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-attribute,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-symbol,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-regexp,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-link,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-attribute,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-symbol,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-regexp,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-link,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-attribute,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-symbol,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-regexp,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-link,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-attribute,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-symbol,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-regexp,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-link,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-attribute,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-symbol,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-regexp,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-link,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-attribute,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-symbol,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-regexp,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-link,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-attribute,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-symbol,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-regexp,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-link,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-attribute,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-symbol,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-regexp,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-link,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-attribute,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-symbol,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-regexp,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-link,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-attribute,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-symbol,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-regexp,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-link,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-attribute,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-symbol,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-regexp,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-link {
  color: #bf79db;
}
.pads-show-page .essay-question-page .markdown-question .hljs-string,
.pads-show-page .essay-question-page .markdown-question .hljs-bullet,
.pads-show-page .essay-question-page .markdown-question .hljs-subst,
.pads-show-page .essay-question-page .markdown-question .hljs-title,
.pads-show-page .essay-question-page .markdown-question .hljs-section,
.pads-show-page .essay-question-page .markdown-question .hljs-emphasis,
.pads-show-page .essay-question-page .markdown-question .hljs-type,
.pads-show-page .essay-question-page .markdown-question .hljs-built_in,
.pads-show-page .essay-question-page .markdown-question .hljs-builtin-name,
.pads-show-page .essay-question-page .markdown-question .hljs-selector-attr,
.pads-show-page .essay-question-page .markdown-question .hljs-selector-pseudo,
.pads-show-page .essay-question-page .markdown-question .hljs-addition,
.pads-show-page .essay-question-page .markdown-question .hljs-variable,
.pads-show-page .essay-question-page .markdown-question .hljs-template-tag,
.pads-show-page .essay-question-page .markdown-question .hljs-template-variable,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-string,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-bullet,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-subst,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-title,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-section,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-emphasis,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-type,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-built_in,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-builtin-name,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-selector-attr,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-selector-pseudo,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-addition,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-variable,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-template-tag,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-template-variable,
.pads-show-page .programming-question-page .markdown-question .hljs-string,
.pads-show-page .programming-question-page .markdown-question .hljs-bullet,
.pads-show-page .programming-question-page .markdown-question .hljs-subst,
.pads-show-page .programming-question-page .markdown-question .hljs-title,
.pads-show-page .programming-question-page .markdown-question .hljs-section,
.pads-show-page .programming-question-page .markdown-question .hljs-emphasis,
.pads-show-page .programming-question-page .markdown-question .hljs-type,
.pads-show-page .programming-question-page .markdown-question .hljs-built_in,
.pads-show-page .programming-question-page .markdown-question .hljs-builtin-name,
.pads-show-page .programming-question-page .markdown-question .hljs-selector-attr,
.pads-show-page .programming-question-page .markdown-question .hljs-selector-pseudo,
.pads-show-page .programming-question-page .markdown-question .hljs-addition,
.pads-show-page .programming-question-page .markdown-question .hljs-variable,
.pads-show-page .programming-question-page .markdown-question .hljs-template-tag,
.pads-show-page .programming-question-page .markdown-question .hljs-template-variable,
.pads-show-page .choice-question-page .markdown-question .hljs-string,
.pads-show-page .choice-question-page .markdown-question .hljs-bullet,
.pads-show-page .choice-question-page .markdown-question .hljs-subst,
.pads-show-page .choice-question-page .markdown-question .hljs-title,
.pads-show-page .choice-question-page .markdown-question .hljs-section,
.pads-show-page .choice-question-page .markdown-question .hljs-emphasis,
.pads-show-page .choice-question-page .markdown-question .hljs-type,
.pads-show-page .choice-question-page .markdown-question .hljs-built_in,
.pads-show-page .choice-question-page .markdown-question .hljs-builtin-name,
.pads-show-page .choice-question-page .markdown-question .hljs-selector-attr,
.pads-show-page .choice-question-page .markdown-question .hljs-selector-pseudo,
.pads-show-page .choice-question-page .markdown-question .hljs-addition,
.pads-show-page .choice-question-page .markdown-question .hljs-variable,
.pads-show-page .choice-question-page .markdown-question .hljs-template-tag,
.pads-show-page .choice-question-page .markdown-question .hljs-template-variable,
.pads-show-page .video-question-page .markdown-question .hljs-string,
.pads-show-page .video-question-page .markdown-question .hljs-bullet,
.pads-show-page .video-question-page .markdown-question .hljs-subst,
.pads-show-page .video-question-page .markdown-question .hljs-title,
.pads-show-page .video-question-page .markdown-question .hljs-section,
.pads-show-page .video-question-page .markdown-question .hljs-emphasis,
.pads-show-page .video-question-page .markdown-question .hljs-type,
.pads-show-page .video-question-page .markdown-question .hljs-built_in,
.pads-show-page .video-question-page .markdown-question .hljs-builtin-name,
.pads-show-page .video-question-page .markdown-question .hljs-selector-attr,
.pads-show-page .video-question-page .markdown-question .hljs-selector-pseudo,
.pads-show-page .video-question-page .markdown-question .hljs-addition,
.pads-show-page .video-question-page .markdown-question .hljs-variable,
.pads-show-page .video-question-page .markdown-question .hljs-template-tag,
.pads-show-page .video-question-page .markdown-question .hljs-template-variable,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-string,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-bullet,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-subst,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-title,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-section,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-emphasis,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-type,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-built_in,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-builtin-name,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-attr,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-pseudo,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-addition,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-variable,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-template-tag,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-template-variable,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-string,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-bullet,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-subst,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-title,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-section,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-emphasis,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-type,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-built_in,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-builtin-name,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-selector-attr,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-selector-pseudo,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-addition,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-variable,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-template-tag,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-template-variable,
.pads-show-page .written-pad-wrap .markdown-question .hljs-string,
.pads-show-page .written-pad-wrap .markdown-question .hljs-bullet,
.pads-show-page .written-pad-wrap .markdown-question .hljs-subst,
.pads-show-page .written-pad-wrap .markdown-question .hljs-title,
.pads-show-page .written-pad-wrap .markdown-question .hljs-section,
.pads-show-page .written-pad-wrap .markdown-question .hljs-emphasis,
.pads-show-page .written-pad-wrap .markdown-question .hljs-type,
.pads-show-page .written-pad-wrap .markdown-question .hljs-built_in,
.pads-show-page .written-pad-wrap .markdown-question .hljs-builtin-name,
.pads-show-page .written-pad-wrap .markdown-question .hljs-selector-attr,
.pads-show-page .written-pad-wrap .markdown-question .hljs-selector-pseudo,
.pads-show-page .written-pad-wrap .markdown-question .hljs-addition,
.pads-show-page .written-pad-wrap .markdown-question .hljs-variable,
.pads-show-page .written-pad-wrap .markdown-question .hljs-template-tag,
.pads-show-page .written-pad-wrap .markdown-question .hljs-template-variable,
.pads-show-page .assessment-wrap .markdown-question .hljs-string,
.pads-show-page .assessment-wrap .markdown-question .hljs-bullet,
.pads-show-page .assessment-wrap .markdown-question .hljs-subst,
.pads-show-page .assessment-wrap .markdown-question .hljs-title,
.pads-show-page .assessment-wrap .markdown-question .hljs-section,
.pads-show-page .assessment-wrap .markdown-question .hljs-emphasis,
.pads-show-page .assessment-wrap .markdown-question .hljs-type,
.pads-show-page .assessment-wrap .markdown-question .hljs-built_in,
.pads-show-page .assessment-wrap .markdown-question .hljs-builtin-name,
.pads-show-page .assessment-wrap .markdown-question .hljs-selector-attr,
.pads-show-page .assessment-wrap .markdown-question .hljs-selector-pseudo,
.pads-show-page .assessment-wrap .markdown-question .hljs-addition,
.pads-show-page .assessment-wrap .markdown-question .hljs-variable,
.pads-show-page .assessment-wrap .markdown-question .hljs-template-tag,
.pads-show-page .assessment-wrap .markdown-question .hljs-template-variable,
.pads-show-page .mobile-question-content .markdown-question .hljs-string,
.pads-show-page .mobile-question-content .markdown-question .hljs-bullet,
.pads-show-page .mobile-question-content .markdown-question .hljs-subst,
.pads-show-page .mobile-question-content .markdown-question .hljs-title,
.pads-show-page .mobile-question-content .markdown-question .hljs-section,
.pads-show-page .mobile-question-content .markdown-question .hljs-emphasis,
.pads-show-page .mobile-question-content .markdown-question .hljs-type,
.pads-show-page .mobile-question-content .markdown-question .hljs-built_in,
.pads-show-page .mobile-question-content .markdown-question .hljs-builtin-name,
.pads-show-page .mobile-question-content .markdown-question .hljs-selector-attr,
.pads-show-page .mobile-question-content .markdown-question .hljs-selector-pseudo,
.pads-show-page .mobile-question-content .markdown-question .hljs-addition,
.pads-show-page .mobile-question-content .markdown-question .hljs-variable,
.pads-show-page .mobile-question-content .markdown-question .hljs-template-tag,
.pads-show-page .mobile-question-content .markdown-question .hljs-template-variable,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-string,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-bullet,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-subst,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-title,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-section,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-emphasis,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-type,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-built_in,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-builtin-name,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-attr,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-pseudo,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-addition,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-variable,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-template-tag,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-template-variable,
.pads-show-page .database-desc-content .markdown-question .hljs-string,
.pads-show-page .database-desc-content .markdown-question .hljs-bullet,
.pads-show-page .database-desc-content .markdown-question .hljs-subst,
.pads-show-page .database-desc-content .markdown-question .hljs-title,
.pads-show-page .database-desc-content .markdown-question .hljs-section,
.pads-show-page .database-desc-content .markdown-question .hljs-emphasis,
.pads-show-page .database-desc-content .markdown-question .hljs-type,
.pads-show-page .database-desc-content .markdown-question .hljs-built_in,
.pads-show-page .database-desc-content .markdown-question .hljs-builtin-name,
.pads-show-page .database-desc-content .markdown-question .hljs-selector-attr,
.pads-show-page .database-desc-content .markdown-question .hljs-selector-pseudo,
.pads-show-page .database-desc-content .markdown-question .hljs-addition,
.pads-show-page .database-desc-content .markdown-question .hljs-variable,
.pads-show-page .database-desc-content .markdown-question .hljs-template-tag,
.pads-show-page .database-desc-content .markdown-question .hljs-template-variable,
.pads-show-page .unittest-content .markdown-question .hljs-string,
.pads-show-page .unittest-content .markdown-question .hljs-bullet,
.pads-show-page .unittest-content .markdown-question .hljs-subst,
.pads-show-page .unittest-content .markdown-question .hljs-title,
.pads-show-page .unittest-content .markdown-question .hljs-section,
.pads-show-page .unittest-content .markdown-question .hljs-emphasis,
.pads-show-page .unittest-content .markdown-question .hljs-type,
.pads-show-page .unittest-content .markdown-question .hljs-built_in,
.pads-show-page .unittest-content .markdown-question .hljs-builtin-name,
.pads-show-page .unittest-content .markdown-question .hljs-selector-attr,
.pads-show-page .unittest-content .markdown-question .hljs-selector-pseudo,
.pads-show-page .unittest-content .markdown-question .hljs-addition,
.pads-show-page .unittest-content .markdown-question .hljs-variable,
.pads-show-page .unittest-content .markdown-question .hljs-template-tag,
.pads-show-page .unittest-content .markdown-question .hljs-template-variable,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-string,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-bullet,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-subst,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-title,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-section,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-emphasis,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-type,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-built_in,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-builtin-name,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-attr,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-pseudo,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-addition,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-variable,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-template-tag,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-template-variable,
.pads-show-page .written-question-page-body .markdown-question .hljs-string,
.pads-show-page .written-question-page-body .markdown-question .hljs-bullet,
.pads-show-page .written-question-page-body .markdown-question .hljs-subst,
.pads-show-page .written-question-page-body .markdown-question .hljs-title,
.pads-show-page .written-question-page-body .markdown-question .hljs-section,
.pads-show-page .written-question-page-body .markdown-question .hljs-emphasis,
.pads-show-page .written-question-page-body .markdown-question .hljs-type,
.pads-show-page .written-question-page-body .markdown-question .hljs-built_in,
.pads-show-page .written-question-page-body .markdown-question .hljs-builtin-name,
.pads-show-page .written-question-page-body .markdown-question .hljs-selector-attr,
.pads-show-page .written-question-page-body .markdown-question .hljs-selector-pseudo,
.pads-show-page .written-question-page-body .markdown-question .hljs-addition,
.pads-show-page .written-question-page-body .markdown-question .hljs-variable,
.pads-show-page .written-question-page-body .markdown-question .hljs-template-tag,
.pads-show-page .written-question-page-body .markdown-question .hljs-template-variable,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-string,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-bullet,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-subst,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-emphasis,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-built_in,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-builtin-name,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-selector-attr,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-addition,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-variable,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-template-tag,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-template-variable,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-string,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-bullet,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-subst,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-emphasis,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-built_in,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-builtin-name,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-selector-attr,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-addition,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-variable,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-template-tag,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-template-variable,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-string,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-bullet,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-subst,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-emphasis,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-built_in,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-builtin-name,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-selector-attr,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-addition,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-variable,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-template-tag,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-template-variable,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-string,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-bullet,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-subst,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-emphasis,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-built_in,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-builtin-name,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-selector-attr,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-addition,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-variable,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-template-tag,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-template-variable,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-string,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-bullet,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-subst,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-emphasis,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-built_in,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-builtin-name,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-selector-attr,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-addition,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-variable,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-template-tag,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-template-variable,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-string,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-bullet,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-subst,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-emphasis,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-built_in,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-builtin-name,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-selector-attr,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-addition,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-variable,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-template-tag,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-template-variable,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-string,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-bullet,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-subst,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-emphasis,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-built_in,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-builtin-name,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-selector-attr,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-addition,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-variable,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-template-tag,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-template-variable,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-string,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-bullet,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-subst,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-emphasis,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-built_in,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-builtin-name,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-selector-attr,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-addition,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-variable,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-template-tag,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-template-variable,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-string,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-bullet,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-subst,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-emphasis,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-built_in,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-builtin-name,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-selector-attr,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-addition,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-variable,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-template-tag,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-template-variable,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-string,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-bullet,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-subst,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-emphasis,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-built_in,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-builtin-name,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-selector-attr,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-addition,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-variable,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-template-tag,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-template-variable,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-string,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-bullet,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-subst,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-emphasis,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-built_in,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-builtin-name,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-selector-attr,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-addition,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-variable,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-template-tag,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-template-variable,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-string,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-bullet,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-subst,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-emphasis,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-built_in,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-builtin-name,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-selector-attr,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-addition,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-variable,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-template-tag,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-template-variable,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-string,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-bullet,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-subst,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-emphasis,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-built_in,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-builtin-name,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-selector-attr,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-addition,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-variable,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-template-tag,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-template-variable,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-string,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-bullet,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-subst,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-emphasis,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-built_in,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-builtin-name,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-attr,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-addition,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-variable,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-template-tag,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-template-variable,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-string,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-bullet,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-subst,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-emphasis,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-built_in,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-builtin-name,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-selector-attr,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-addition,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-variable,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-template-tag,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-template-variable,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-string,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-bullet,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-subst,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-title,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-section,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-emphasis,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-type,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-built_in,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-builtin-name,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-selector-attr,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-addition,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-variable,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-template-tag,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-template-variable,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-string,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-bullet,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-subst,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-title,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-section,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-emphasis,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-type,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-built_in,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-builtin-name,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-selector-attr,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-addition,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-variable,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-template-tag,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-template-variable,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-string,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-bullet,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-subst,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-title,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-section,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-emphasis,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-type,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-built_in,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-builtin-name,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-selector-attr,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-addition,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-variable,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-template-tag,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-template-variable,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-string,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-bullet,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-subst,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-title,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-section,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-emphasis,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-type,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-built_in,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-builtin-name,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-selector-attr,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-addition,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-variable,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-template-tag,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-template-variable,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-string,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-bullet,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-subst,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-title,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-section,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-emphasis,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-type,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-built_in,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-builtin-name,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-selector-attr,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-addition,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-variable,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-template-tag,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-template-variable,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-string,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-bullet,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-subst,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-title,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-section,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-emphasis,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-type,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-built_in,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-builtin-name,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-attr,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-addition,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-variable,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-template-tag,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-template-variable,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-string,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-bullet,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-subst,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-title,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-section,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-emphasis,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-type,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-built_in,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-builtin-name,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-selector-attr,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-addition,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-variable,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-template-tag,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-template-variable,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-string,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-bullet,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-subst,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-title,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-section,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-emphasis,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-type,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-built_in,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-builtin-name,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-selector-attr,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-addition,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-variable,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-template-tag,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-template-variable,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-string,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-bullet,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-subst,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-title,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-section,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-emphasis,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-type,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-built_in,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-builtin-name,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-selector-attr,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-addition,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-variable,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-template-tag,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-template-variable,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-string,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-bullet,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-subst,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-title,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-section,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-emphasis,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-type,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-built_in,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-builtin-name,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-selector-attr,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-addition,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-variable,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-template-tag,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-template-variable,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-string,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-bullet,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-subst,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-title,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-section,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-emphasis,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-type,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-built_in,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-builtin-name,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-attr,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-addition,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-variable,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-template-tag,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-template-variable,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-string,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-bullet,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-subst,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-title,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-section,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-emphasis,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-type,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-built_in,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-builtin-name,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-selector-attr,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-addition,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-variable,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-template-tag,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-template-variable,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-string,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-bullet,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-subst,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-title,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-section,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-emphasis,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-type,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-built_in,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-builtin-name,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-selector-attr,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-addition,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-variable,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-template-tag,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-template-variable,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-string,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-bullet,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-subst,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-title,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-section,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-emphasis,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-type,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-built_in,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-builtin-name,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-attr,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-addition,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-variable,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-template-tag,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-template-variable,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-string,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-bullet,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-subst,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-title,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-section,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-emphasis,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-type,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-built_in,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-builtin-name,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-selector-attr,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-selector-pseudo,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-addition,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-variable,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-template-tag,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-template-variable,
.written-pads-show-page .essay-question-page .markdown-question .hljs-string,
.written-pads-show-page .essay-question-page .markdown-question .hljs-bullet,
.written-pads-show-page .essay-question-page .markdown-question .hljs-subst,
.written-pads-show-page .essay-question-page .markdown-question .hljs-title,
.written-pads-show-page .essay-question-page .markdown-question .hljs-section,
.written-pads-show-page .essay-question-page .markdown-question .hljs-emphasis,
.written-pads-show-page .essay-question-page .markdown-question .hljs-type,
.written-pads-show-page .essay-question-page .markdown-question .hljs-built_in,
.written-pads-show-page .essay-question-page .markdown-question .hljs-builtin-name,
.written-pads-show-page .essay-question-page .markdown-question .hljs-selector-attr,
.written-pads-show-page .essay-question-page .markdown-question .hljs-selector-pseudo,
.written-pads-show-page .essay-question-page .markdown-question .hljs-addition,
.written-pads-show-page .essay-question-page .markdown-question .hljs-variable,
.written-pads-show-page .essay-question-page .markdown-question .hljs-template-tag,
.written-pads-show-page .essay-question-page .markdown-question .hljs-template-variable,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-string,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-bullet,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-subst,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-title,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-section,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-emphasis,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-type,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-built_in,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-builtin-name,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-selector-attr,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-selector-pseudo,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-addition,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-variable,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-template-tag,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-template-variable,
.written-pads-show-page .programming-question-page .markdown-question .hljs-string,
.written-pads-show-page .programming-question-page .markdown-question .hljs-bullet,
.written-pads-show-page .programming-question-page .markdown-question .hljs-subst,
.written-pads-show-page .programming-question-page .markdown-question .hljs-title,
.written-pads-show-page .programming-question-page .markdown-question .hljs-section,
.written-pads-show-page .programming-question-page .markdown-question .hljs-emphasis,
.written-pads-show-page .programming-question-page .markdown-question .hljs-type,
.written-pads-show-page .programming-question-page .markdown-question .hljs-built_in,
.written-pads-show-page .programming-question-page .markdown-question .hljs-builtin-name,
.written-pads-show-page .programming-question-page .markdown-question .hljs-selector-attr,
.written-pads-show-page .programming-question-page .markdown-question .hljs-selector-pseudo,
.written-pads-show-page .programming-question-page .markdown-question .hljs-addition,
.written-pads-show-page .programming-question-page .markdown-question .hljs-variable,
.written-pads-show-page .programming-question-page .markdown-question .hljs-template-tag,
.written-pads-show-page .programming-question-page .markdown-question .hljs-template-variable,
.written-pads-show-page .choice-question-page .markdown-question .hljs-string,
.written-pads-show-page .choice-question-page .markdown-question .hljs-bullet,
.written-pads-show-page .choice-question-page .markdown-question .hljs-subst,
.written-pads-show-page .choice-question-page .markdown-question .hljs-title,
.written-pads-show-page .choice-question-page .markdown-question .hljs-section,
.written-pads-show-page .choice-question-page .markdown-question .hljs-emphasis,
.written-pads-show-page .choice-question-page .markdown-question .hljs-type,
.written-pads-show-page .choice-question-page .markdown-question .hljs-built_in,
.written-pads-show-page .choice-question-page .markdown-question .hljs-builtin-name,
.written-pads-show-page .choice-question-page .markdown-question .hljs-selector-attr,
.written-pads-show-page .choice-question-page .markdown-question .hljs-selector-pseudo,
.written-pads-show-page .choice-question-page .markdown-question .hljs-addition,
.written-pads-show-page .choice-question-page .markdown-question .hljs-variable,
.written-pads-show-page .choice-question-page .markdown-question .hljs-template-tag,
.written-pads-show-page .choice-question-page .markdown-question .hljs-template-variable,
.written-pads-show-page .video-question-page .markdown-question .hljs-string,
.written-pads-show-page .video-question-page .markdown-question .hljs-bullet,
.written-pads-show-page .video-question-page .markdown-question .hljs-subst,
.written-pads-show-page .video-question-page .markdown-question .hljs-title,
.written-pads-show-page .video-question-page .markdown-question .hljs-section,
.written-pads-show-page .video-question-page .markdown-question .hljs-emphasis,
.written-pads-show-page .video-question-page .markdown-question .hljs-type,
.written-pads-show-page .video-question-page .markdown-question .hljs-built_in,
.written-pads-show-page .video-question-page .markdown-question .hljs-builtin-name,
.written-pads-show-page .video-question-page .markdown-question .hljs-selector-attr,
.written-pads-show-page .video-question-page .markdown-question .hljs-selector-pseudo,
.written-pads-show-page .video-question-page .markdown-question .hljs-addition,
.written-pads-show-page .video-question-page .markdown-question .hljs-variable,
.written-pads-show-page .video-question-page .markdown-question .hljs-template-tag,
.written-pads-show-page .video-question-page .markdown-question .hljs-template-variable,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-string,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-bullet,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-subst,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-title,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-section,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-emphasis,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-type,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-built_in,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-builtin-name,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-attr,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-pseudo,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-addition,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-variable,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-template-tag,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-template-variable,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-string,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-bullet,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-subst,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-title,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-section,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-emphasis,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-type,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-built_in,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-builtin-name,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-selector-attr,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-selector-pseudo,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-addition,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-variable,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-template-tag,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-template-variable,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-string,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-bullet,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-subst,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-title,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-section,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-emphasis,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-type,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-built_in,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-builtin-name,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-selector-attr,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-selector-pseudo,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-addition,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-variable,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-template-tag,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-template-variable,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-string,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-bullet,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-subst,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-title,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-section,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-emphasis,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-type,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-built_in,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-builtin-name,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-selector-attr,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-selector-pseudo,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-addition,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-variable,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-template-tag,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-template-variable,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-string,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-bullet,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-subst,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-title,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-section,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-emphasis,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-type,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-built_in,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-builtin-name,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-selector-attr,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-selector-pseudo,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-addition,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-variable,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-template-tag,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-template-variable,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-string,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-bullet,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-subst,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-title,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-section,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-emphasis,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-type,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-built_in,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-builtin-name,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-attr,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-pseudo,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-addition,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-variable,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-template-tag,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-template-variable,
.written-pads-show-page .database-desc-content .markdown-question .hljs-string,
.written-pads-show-page .database-desc-content .markdown-question .hljs-bullet,
.written-pads-show-page .database-desc-content .markdown-question .hljs-subst,
.written-pads-show-page .database-desc-content .markdown-question .hljs-title,
.written-pads-show-page .database-desc-content .markdown-question .hljs-section,
.written-pads-show-page .database-desc-content .markdown-question .hljs-emphasis,
.written-pads-show-page .database-desc-content .markdown-question .hljs-type,
.written-pads-show-page .database-desc-content .markdown-question .hljs-built_in,
.written-pads-show-page .database-desc-content .markdown-question .hljs-builtin-name,
.written-pads-show-page .database-desc-content .markdown-question .hljs-selector-attr,
.written-pads-show-page .database-desc-content .markdown-question .hljs-selector-pseudo,
.written-pads-show-page .database-desc-content .markdown-question .hljs-addition,
.written-pads-show-page .database-desc-content .markdown-question .hljs-variable,
.written-pads-show-page .database-desc-content .markdown-question .hljs-template-tag,
.written-pads-show-page .database-desc-content .markdown-question .hljs-template-variable,
.written-pads-show-page .unittest-content .markdown-question .hljs-string,
.written-pads-show-page .unittest-content .markdown-question .hljs-bullet,
.written-pads-show-page .unittest-content .markdown-question .hljs-subst,
.written-pads-show-page .unittest-content .markdown-question .hljs-title,
.written-pads-show-page .unittest-content .markdown-question .hljs-section,
.written-pads-show-page .unittest-content .markdown-question .hljs-emphasis,
.written-pads-show-page .unittest-content .markdown-question .hljs-type,
.written-pads-show-page .unittest-content .markdown-question .hljs-built_in,
.written-pads-show-page .unittest-content .markdown-question .hljs-builtin-name,
.written-pads-show-page .unittest-content .markdown-question .hljs-selector-attr,
.written-pads-show-page .unittest-content .markdown-question .hljs-selector-pseudo,
.written-pads-show-page .unittest-content .markdown-question .hljs-addition,
.written-pads-show-page .unittest-content .markdown-question .hljs-variable,
.written-pads-show-page .unittest-content .markdown-question .hljs-template-tag,
.written-pads-show-page .unittest-content .markdown-question .hljs-template-variable,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-string,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-bullet,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-subst,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-title,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-section,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-emphasis,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-type,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-built_in,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-builtin-name,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-attr,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-pseudo,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-addition,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-variable,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-template-tag,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-template-variable,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-string,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-bullet,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-subst,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-title,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-section,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-emphasis,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-type,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-built_in,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-builtin-name,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-selector-attr,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-selector-pseudo,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-addition,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-variable,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-template-tag,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-template-variable,
.assessments-show-page .essay-question-page .markdown-question .hljs-string,
.assessments-show-page .essay-question-page .markdown-question .hljs-bullet,
.assessments-show-page .essay-question-page .markdown-question .hljs-subst,
.assessments-show-page .essay-question-page .markdown-question .hljs-title,
.assessments-show-page .essay-question-page .markdown-question .hljs-section,
.assessments-show-page .essay-question-page .markdown-question .hljs-emphasis,
.assessments-show-page .essay-question-page .markdown-question .hljs-type,
.assessments-show-page .essay-question-page .markdown-question .hljs-built_in,
.assessments-show-page .essay-question-page .markdown-question .hljs-builtin-name,
.assessments-show-page .essay-question-page .markdown-question .hljs-selector-attr,
.assessments-show-page .essay-question-page .markdown-question .hljs-selector-pseudo,
.assessments-show-page .essay-question-page .markdown-question .hljs-addition,
.assessments-show-page .essay-question-page .markdown-question .hljs-variable,
.assessments-show-page .essay-question-page .markdown-question .hljs-template-tag,
.assessments-show-page .essay-question-page .markdown-question .hljs-template-variable,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-string,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-bullet,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-subst,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-title,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-section,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-emphasis,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-type,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-built_in,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-builtin-name,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-selector-attr,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-selector-pseudo,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-addition,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-variable,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-template-tag,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-template-variable,
.assessments-show-page .programming-question-page .markdown-question .hljs-string,
.assessments-show-page .programming-question-page .markdown-question .hljs-bullet,
.assessments-show-page .programming-question-page .markdown-question .hljs-subst,
.assessments-show-page .programming-question-page .markdown-question .hljs-title,
.assessments-show-page .programming-question-page .markdown-question .hljs-section,
.assessments-show-page .programming-question-page .markdown-question .hljs-emphasis,
.assessments-show-page .programming-question-page .markdown-question .hljs-type,
.assessments-show-page .programming-question-page .markdown-question .hljs-built_in,
.assessments-show-page .programming-question-page .markdown-question .hljs-builtin-name,
.assessments-show-page .programming-question-page .markdown-question .hljs-selector-attr,
.assessments-show-page .programming-question-page .markdown-question .hljs-selector-pseudo,
.assessments-show-page .programming-question-page .markdown-question .hljs-addition,
.assessments-show-page .programming-question-page .markdown-question .hljs-variable,
.assessments-show-page .programming-question-page .markdown-question .hljs-template-tag,
.assessments-show-page .programming-question-page .markdown-question .hljs-template-variable,
.assessments-show-page .choice-question-page .markdown-question .hljs-string,
.assessments-show-page .choice-question-page .markdown-question .hljs-bullet,
.assessments-show-page .choice-question-page .markdown-question .hljs-subst,
.assessments-show-page .choice-question-page .markdown-question .hljs-title,
.assessments-show-page .choice-question-page .markdown-question .hljs-section,
.assessments-show-page .choice-question-page .markdown-question .hljs-emphasis,
.assessments-show-page .choice-question-page .markdown-question .hljs-type,
.assessments-show-page .choice-question-page .markdown-question .hljs-built_in,
.assessments-show-page .choice-question-page .markdown-question .hljs-builtin-name,
.assessments-show-page .choice-question-page .markdown-question .hljs-selector-attr,
.assessments-show-page .choice-question-page .markdown-question .hljs-selector-pseudo,
.assessments-show-page .choice-question-page .markdown-question .hljs-addition,
.assessments-show-page .choice-question-page .markdown-question .hljs-variable,
.assessments-show-page .choice-question-page .markdown-question .hljs-template-tag,
.assessments-show-page .choice-question-page .markdown-question .hljs-template-variable,
.assessments-show-page .video-question-page .markdown-question .hljs-string,
.assessments-show-page .video-question-page .markdown-question .hljs-bullet,
.assessments-show-page .video-question-page .markdown-question .hljs-subst,
.assessments-show-page .video-question-page .markdown-question .hljs-title,
.assessments-show-page .video-question-page .markdown-question .hljs-section,
.assessments-show-page .video-question-page .markdown-question .hljs-emphasis,
.assessments-show-page .video-question-page .markdown-question .hljs-type,
.assessments-show-page .video-question-page .markdown-question .hljs-built_in,
.assessments-show-page .video-question-page .markdown-question .hljs-builtin-name,
.assessments-show-page .video-question-page .markdown-question .hljs-selector-attr,
.assessments-show-page .video-question-page .markdown-question .hljs-selector-pseudo,
.assessments-show-page .video-question-page .markdown-question .hljs-addition,
.assessments-show-page .video-question-page .markdown-question .hljs-variable,
.assessments-show-page .video-question-page .markdown-question .hljs-template-tag,
.assessments-show-page .video-question-page .markdown-question .hljs-template-variable,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-string,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-bullet,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-subst,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-title,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-section,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-emphasis,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-type,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-built_in,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-builtin-name,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-attr,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-pseudo,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-addition,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-variable,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-template-tag,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-template-variable,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-string,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-bullet,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-subst,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-title,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-section,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-emphasis,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-type,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-built_in,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-builtin-name,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-selector-attr,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-selector-pseudo,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-addition,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-variable,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-template-tag,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-template-variable,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-string,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-bullet,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-subst,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-title,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-section,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-emphasis,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-type,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-built_in,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-builtin-name,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-selector-attr,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-selector-pseudo,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-addition,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-variable,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-template-tag,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-template-variable,
.assessments-show-page .assessment-wrap .markdown-question .hljs-string,
.assessments-show-page .assessment-wrap .markdown-question .hljs-bullet,
.assessments-show-page .assessment-wrap .markdown-question .hljs-subst,
.assessments-show-page .assessment-wrap .markdown-question .hljs-title,
.assessments-show-page .assessment-wrap .markdown-question .hljs-section,
.assessments-show-page .assessment-wrap .markdown-question .hljs-emphasis,
.assessments-show-page .assessment-wrap .markdown-question .hljs-type,
.assessments-show-page .assessment-wrap .markdown-question .hljs-built_in,
.assessments-show-page .assessment-wrap .markdown-question .hljs-builtin-name,
.assessments-show-page .assessment-wrap .markdown-question .hljs-selector-attr,
.assessments-show-page .assessment-wrap .markdown-question .hljs-selector-pseudo,
.assessments-show-page .assessment-wrap .markdown-question .hljs-addition,
.assessments-show-page .assessment-wrap .markdown-question .hljs-variable,
.assessments-show-page .assessment-wrap .markdown-question .hljs-template-tag,
.assessments-show-page .assessment-wrap .markdown-question .hljs-template-variable,
.assessments-show-page .mobile-question-content .markdown-question .hljs-string,
.assessments-show-page .mobile-question-content .markdown-question .hljs-bullet,
.assessments-show-page .mobile-question-content .markdown-question .hljs-subst,
.assessments-show-page .mobile-question-content .markdown-question .hljs-title,
.assessments-show-page .mobile-question-content .markdown-question .hljs-section,
.assessments-show-page .mobile-question-content .markdown-question .hljs-emphasis,
.assessments-show-page .mobile-question-content .markdown-question .hljs-type,
.assessments-show-page .mobile-question-content .markdown-question .hljs-built_in,
.assessments-show-page .mobile-question-content .markdown-question .hljs-builtin-name,
.assessments-show-page .mobile-question-content .markdown-question .hljs-selector-attr,
.assessments-show-page .mobile-question-content .markdown-question .hljs-selector-pseudo,
.assessments-show-page .mobile-question-content .markdown-question .hljs-addition,
.assessments-show-page .mobile-question-content .markdown-question .hljs-variable,
.assessments-show-page .mobile-question-content .markdown-question .hljs-template-tag,
.assessments-show-page .mobile-question-content .markdown-question .hljs-template-variable,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-string,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-bullet,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-subst,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-title,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-section,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-emphasis,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-type,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-built_in,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-builtin-name,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-attr,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-pseudo,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-addition,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-variable,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-template-tag,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-template-variable,
.assessments-show-page .database-desc-content .markdown-question .hljs-string,
.assessments-show-page .database-desc-content .markdown-question .hljs-bullet,
.assessments-show-page .database-desc-content .markdown-question .hljs-subst,
.assessments-show-page .database-desc-content .markdown-question .hljs-title,
.assessments-show-page .database-desc-content .markdown-question .hljs-section,
.assessments-show-page .database-desc-content .markdown-question .hljs-emphasis,
.assessments-show-page .database-desc-content .markdown-question .hljs-type,
.assessments-show-page .database-desc-content .markdown-question .hljs-built_in,
.assessments-show-page .database-desc-content .markdown-question .hljs-builtin-name,
.assessments-show-page .database-desc-content .markdown-question .hljs-selector-attr,
.assessments-show-page .database-desc-content .markdown-question .hljs-selector-pseudo,
.assessments-show-page .database-desc-content .markdown-question .hljs-addition,
.assessments-show-page .database-desc-content .markdown-question .hljs-variable,
.assessments-show-page .database-desc-content .markdown-question .hljs-template-tag,
.assessments-show-page .database-desc-content .markdown-question .hljs-template-variable,
.assessments-show-page .unittest-content .markdown-question .hljs-string,
.assessments-show-page .unittest-content .markdown-question .hljs-bullet,
.assessments-show-page .unittest-content .markdown-question .hljs-subst,
.assessments-show-page .unittest-content .markdown-question .hljs-title,
.assessments-show-page .unittest-content .markdown-question .hljs-section,
.assessments-show-page .unittest-content .markdown-question .hljs-emphasis,
.assessments-show-page .unittest-content .markdown-question .hljs-type,
.assessments-show-page .unittest-content .markdown-question .hljs-built_in,
.assessments-show-page .unittest-content .markdown-question .hljs-builtin-name,
.assessments-show-page .unittest-content .markdown-question .hljs-selector-attr,
.assessments-show-page .unittest-content .markdown-question .hljs-selector-pseudo,
.assessments-show-page .unittest-content .markdown-question .hljs-addition,
.assessments-show-page .unittest-content .markdown-question .hljs-variable,
.assessments-show-page .unittest-content .markdown-question .hljs-template-tag,
.assessments-show-page .unittest-content .markdown-question .hljs-template-variable,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-string,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-bullet,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-subst,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-title,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-section,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-emphasis,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-type,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-built_in,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-builtin-name,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-attr,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-pseudo,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-addition,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-variable,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-template-tag,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-template-variable,
.assessments-show-page .written-question-page-body .markdown-question .hljs-string,
.assessments-show-page .written-question-page-body .markdown-question .hljs-bullet,
.assessments-show-page .written-question-page-body .markdown-question .hljs-subst,
.assessments-show-page .written-question-page-body .markdown-question .hljs-title,
.assessments-show-page .written-question-page-body .markdown-question .hljs-section,
.assessments-show-page .written-question-page-body .markdown-question .hljs-emphasis,
.assessments-show-page .written-question-page-body .markdown-question .hljs-type,
.assessments-show-page .written-question-page-body .markdown-question .hljs-built_in,
.assessments-show-page .written-question-page-body .markdown-question .hljs-builtin-name,
.assessments-show-page .written-question-page-body .markdown-question .hljs-selector-attr,
.assessments-show-page .written-question-page-body .markdown-question .hljs-selector-pseudo,
.assessments-show-page .written-question-page-body .markdown-question .hljs-addition,
.assessments-show-page .written-question-page-body .markdown-question .hljs-variable,
.assessments-show-page .written-question-page-body .markdown-question .hljs-template-tag,
.assessments-show-page .written-question-page-body .markdown-question .hljs-template-variable,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-string,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-bullet,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-subst,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-title,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-section,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-emphasis,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-type,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-built_in,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-builtin-name,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-selector-attr,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-selector-pseudo,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-addition,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-variable,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-template-tag,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-template-variable,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-string,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-bullet,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-subst,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-title,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-section,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-emphasis,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-type,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-built_in,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-builtin-name,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-selector-attr,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-selector-pseudo,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-addition,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-variable,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-template-tag,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-template-variable,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-string,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-bullet,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-subst,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-title,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-section,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-emphasis,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-type,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-built_in,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-builtin-name,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-selector-attr,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-selector-pseudo,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-addition,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-variable,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-template-tag,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-template-variable,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-string,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-bullet,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-subst,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-title,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-section,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-emphasis,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-type,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-built_in,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-builtin-name,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-selector-attr,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-selector-pseudo,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-addition,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-variable,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-template-tag,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-template-variable,
.paas-pads-show-page .video-question-page .markdown-question .hljs-string,
.paas-pads-show-page .video-question-page .markdown-question .hljs-bullet,
.paas-pads-show-page .video-question-page .markdown-question .hljs-subst,
.paas-pads-show-page .video-question-page .markdown-question .hljs-title,
.paas-pads-show-page .video-question-page .markdown-question .hljs-section,
.paas-pads-show-page .video-question-page .markdown-question .hljs-emphasis,
.paas-pads-show-page .video-question-page .markdown-question .hljs-type,
.paas-pads-show-page .video-question-page .markdown-question .hljs-built_in,
.paas-pads-show-page .video-question-page .markdown-question .hljs-builtin-name,
.paas-pads-show-page .video-question-page .markdown-question .hljs-selector-attr,
.paas-pads-show-page .video-question-page .markdown-question .hljs-selector-pseudo,
.paas-pads-show-page .video-question-page .markdown-question .hljs-addition,
.paas-pads-show-page .video-question-page .markdown-question .hljs-variable,
.paas-pads-show-page .video-question-page .markdown-question .hljs-template-tag,
.paas-pads-show-page .video-question-page .markdown-question .hljs-template-variable,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-string,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-bullet,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-subst,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-title,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-section,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-emphasis,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-type,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-built_in,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-builtin-name,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-attr,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-pseudo,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-addition,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-variable,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-template-tag,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-template-variable,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-string,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-bullet,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-subst,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-title,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-section,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-emphasis,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-type,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-built_in,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-builtin-name,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-selector-attr,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-selector-pseudo,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-addition,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-variable,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-template-tag,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-template-variable,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-string,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-bullet,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-subst,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-title,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-section,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-emphasis,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-type,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-built_in,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-builtin-name,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-selector-attr,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-selector-pseudo,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-addition,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-variable,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-template-tag,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-template-variable,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-string,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-bullet,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-subst,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-title,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-section,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-emphasis,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-type,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-built_in,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-builtin-name,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-selector-attr,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-selector-pseudo,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-addition,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-variable,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-template-tag,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-template-variable,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-string,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-bullet,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-subst,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-title,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-section,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-emphasis,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-type,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-built_in,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-builtin-name,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-selector-attr,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-selector-pseudo,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-addition,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-variable,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-template-tag,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-template-variable,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-string,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-bullet,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-subst,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-title,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-section,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-emphasis,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-type,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-built_in,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-builtin-name,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-attr,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-pseudo,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-addition,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-variable,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-template-tag,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-template-variable,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-string,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-bullet,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-subst,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-title,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-section,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-emphasis,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-type,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-built_in,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-builtin-name,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-selector-attr,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-selector-pseudo,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-addition,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-variable,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-template-tag,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-template-variable,
.paas-pads-show-page .unittest-content .markdown-question .hljs-string,
.paas-pads-show-page .unittest-content .markdown-question .hljs-bullet,
.paas-pads-show-page .unittest-content .markdown-question .hljs-subst,
.paas-pads-show-page .unittest-content .markdown-question .hljs-title,
.paas-pads-show-page .unittest-content .markdown-question .hljs-section,
.paas-pads-show-page .unittest-content .markdown-question .hljs-emphasis,
.paas-pads-show-page .unittest-content .markdown-question .hljs-type,
.paas-pads-show-page .unittest-content .markdown-question .hljs-built_in,
.paas-pads-show-page .unittest-content .markdown-question .hljs-builtin-name,
.paas-pads-show-page .unittest-content .markdown-question .hljs-selector-attr,
.paas-pads-show-page .unittest-content .markdown-question .hljs-selector-pseudo,
.paas-pads-show-page .unittest-content .markdown-question .hljs-addition,
.paas-pads-show-page .unittest-content .markdown-question .hljs-variable,
.paas-pads-show-page .unittest-content .markdown-question .hljs-template-tag,
.paas-pads-show-page .unittest-content .markdown-question .hljs-template-variable,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-string,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-bullet,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-subst,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-title,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-section,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-emphasis,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-type,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-built_in,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-builtin-name,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-attr,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-pseudo,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-addition,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-variable,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-template-tag,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-template-variable,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-string,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-bullet,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-subst,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-title,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-section,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-emphasis,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-type,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-built_in,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-builtin-name,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-selector-attr,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-selector-pseudo,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-addition,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-variable,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-template-tag,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-template-variable,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-string,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-bullet,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-subst,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-emphasis,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-built_in,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-builtin-name,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-selector-attr,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-selector-pseudo,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-addition,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-variable,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-template-tag,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-template-variable,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-string,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-bullet,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-subst,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-emphasis,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-built_in,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-builtin-name,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-selector-attr,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-selector-pseudo,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-addition,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-variable,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-template-tag,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-template-variable,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-string,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-bullet,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-subst,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-emphasis,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-built_in,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-builtin-name,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-selector-attr,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-selector-pseudo,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-addition,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-variable,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-template-tag,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-template-variable,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-string,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-bullet,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-subst,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-emphasis,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-built_in,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-builtin-name,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-selector-attr,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-selector-pseudo,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-addition,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-variable,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-template-tag,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-template-variable,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-string,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-bullet,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-subst,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-emphasis,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-built_in,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-builtin-name,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-selector-attr,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-selector-pseudo,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-addition,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-variable,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-template-tag,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-template-variable,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-string,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-bullet,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-subst,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-emphasis,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-built_in,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-builtin-name,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-attr,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-pseudo,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-addition,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-variable,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-template-tag,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-template-variable,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-string,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-bullet,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-subst,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-emphasis,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-built_in,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-builtin-name,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-selector-attr,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-selector-pseudo,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-addition,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-variable,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-template-tag,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-template-variable,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-string,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-bullet,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-subst,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-emphasis,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-built_in,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-builtin-name,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-selector-attr,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-selector-pseudo,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-addition,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-variable,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-template-tag,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-template-variable,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-string,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-bullet,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-subst,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-emphasis,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-built_in,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-builtin-name,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-selector-attr,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-selector-pseudo,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-addition,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-variable,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-template-tag,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-template-variable,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-string,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-bullet,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-subst,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-emphasis,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-built_in,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-builtin-name,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-selector-attr,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-selector-pseudo,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-addition,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-variable,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-template-tag,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-template-variable,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-string,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-bullet,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-subst,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-emphasis,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-built_in,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-builtin-name,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-attr,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-pseudo,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-addition,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-variable,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-template-tag,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-template-variable,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-string,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-bullet,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-subst,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-emphasis,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-built_in,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-builtin-name,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-selector-attr,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-selector-pseudo,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-addition,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-variable,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-template-tag,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-template-variable,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-string,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-bullet,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-subst,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-emphasis,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-built_in,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-builtin-name,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-selector-attr,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-selector-pseudo,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-addition,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-variable,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-template-tag,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-template-variable,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-string,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-bullet,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-subst,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-emphasis,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-built_in,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-builtin-name,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-attr,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-pseudo,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-addition,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-variable,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-template-tag,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-template-variable,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-string,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-bullet,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-subst,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-emphasis,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-built_in,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-builtin-name,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-selector-attr,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-selector-pseudo,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-addition,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-variable,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-template-tag,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-template-variable {
  color: #a6e22e;
}
.pads-show-page .essay-question-page .markdown-question .hljs-comment,
.pads-show-page .essay-question-page .markdown-question .hljs-quote,
.pads-show-page .essay-question-page .markdown-question .hljs-deletion,
.pads-show-page .essay-question-page .markdown-question .hljs-meta,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-comment,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-quote,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-deletion,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-meta,
.pads-show-page .programming-question-page .markdown-question .hljs-comment,
.pads-show-page .programming-question-page .markdown-question .hljs-quote,
.pads-show-page .programming-question-page .markdown-question .hljs-deletion,
.pads-show-page .programming-question-page .markdown-question .hljs-meta,
.pads-show-page .choice-question-page .markdown-question .hljs-comment,
.pads-show-page .choice-question-page .markdown-question .hljs-quote,
.pads-show-page .choice-question-page .markdown-question .hljs-deletion,
.pads-show-page .choice-question-page .markdown-question .hljs-meta,
.pads-show-page .video-question-page .markdown-question .hljs-comment,
.pads-show-page .video-question-page .markdown-question .hljs-quote,
.pads-show-page .video-question-page .markdown-question .hljs-deletion,
.pads-show-page .video-question-page .markdown-question .hljs-meta,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-comment,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-quote,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-deletion,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-meta,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-comment,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-quote,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-deletion,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-meta,
.pads-show-page .written-pad-wrap .markdown-question .hljs-comment,
.pads-show-page .written-pad-wrap .markdown-question .hljs-quote,
.pads-show-page .written-pad-wrap .markdown-question .hljs-deletion,
.pads-show-page .written-pad-wrap .markdown-question .hljs-meta,
.pads-show-page .assessment-wrap .markdown-question .hljs-comment,
.pads-show-page .assessment-wrap .markdown-question .hljs-quote,
.pads-show-page .assessment-wrap .markdown-question .hljs-deletion,
.pads-show-page .assessment-wrap .markdown-question .hljs-meta,
.pads-show-page .mobile-question-content .markdown-question .hljs-comment,
.pads-show-page .mobile-question-content .markdown-question .hljs-quote,
.pads-show-page .mobile-question-content .markdown-question .hljs-deletion,
.pads-show-page .mobile-question-content .markdown-question .hljs-meta,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-comment,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-quote,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-deletion,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-meta,
.pads-show-page .database-desc-content .markdown-question .hljs-comment,
.pads-show-page .database-desc-content .markdown-question .hljs-quote,
.pads-show-page .database-desc-content .markdown-question .hljs-deletion,
.pads-show-page .database-desc-content .markdown-question .hljs-meta,
.pads-show-page .unittest-content .markdown-question .hljs-comment,
.pads-show-page .unittest-content .markdown-question .hljs-quote,
.pads-show-page .unittest-content .markdown-question .hljs-deletion,
.pads-show-page .unittest-content .markdown-question .hljs-meta,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-comment,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-quote,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-deletion,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-meta,
.pads-show-page .written-question-page-body .markdown-question .hljs-comment,
.pads-show-page .written-question-page-body .markdown-question .hljs-quote,
.pads-show-page .written-question-page-body .markdown-question .hljs-deletion,
.pads-show-page .written-question-page-body .markdown-question .hljs-meta,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-comment,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-quote,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-deletion,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-meta,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-comment,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-quote,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-deletion,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-meta,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-comment,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-quote,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-deletion,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-meta,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-comment,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-quote,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-deletion,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-meta,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-comment,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-quote,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-deletion,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-meta,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-comment,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-quote,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-deletion,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-meta,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-comment,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-quote,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-deletion,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-meta,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-comment,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-quote,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-deletion,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-meta,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-comment,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-quote,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-deletion,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-meta,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-comment,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-quote,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-deletion,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-meta,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-comment,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-quote,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-deletion,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-meta,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-comment,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-quote,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-deletion,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-meta,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-comment,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-quote,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-deletion,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-meta,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-comment,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-quote,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-deletion,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-meta,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-comment,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-quote,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-deletion,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-meta,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-comment,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-quote,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-deletion,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-meta,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-comment,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-quote,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-deletion,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-meta,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-comment,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-quote,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-deletion,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-meta,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-comment,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-quote,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-deletion,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-meta,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-comment,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-quote,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-deletion,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-meta,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-comment,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-quote,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-deletion,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-meta,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-comment,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-quote,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-deletion,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-meta,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-comment,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-quote,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-deletion,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-meta,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-comment,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-quote,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-deletion,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-meta,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-comment,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-quote,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-deletion,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-meta,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-comment,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-quote,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-deletion,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-meta,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-comment,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-quote,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-deletion,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-meta,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-comment,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-quote,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-deletion,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-meta,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-comment,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-quote,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-deletion,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-meta,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-comment,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-quote,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-deletion,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-meta,
.written-pads-show-page .essay-question-page .markdown-question .hljs-comment,
.written-pads-show-page .essay-question-page .markdown-question .hljs-quote,
.written-pads-show-page .essay-question-page .markdown-question .hljs-deletion,
.written-pads-show-page .essay-question-page .markdown-question .hljs-meta,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-comment,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-quote,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-deletion,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-meta,
.written-pads-show-page .programming-question-page .markdown-question .hljs-comment,
.written-pads-show-page .programming-question-page .markdown-question .hljs-quote,
.written-pads-show-page .programming-question-page .markdown-question .hljs-deletion,
.written-pads-show-page .programming-question-page .markdown-question .hljs-meta,
.written-pads-show-page .choice-question-page .markdown-question .hljs-comment,
.written-pads-show-page .choice-question-page .markdown-question .hljs-quote,
.written-pads-show-page .choice-question-page .markdown-question .hljs-deletion,
.written-pads-show-page .choice-question-page .markdown-question .hljs-meta,
.written-pads-show-page .video-question-page .markdown-question .hljs-comment,
.written-pads-show-page .video-question-page .markdown-question .hljs-quote,
.written-pads-show-page .video-question-page .markdown-question .hljs-deletion,
.written-pads-show-page .video-question-page .markdown-question .hljs-meta,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-comment,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-quote,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-deletion,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-meta,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-comment,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-quote,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-deletion,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-meta,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-comment,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-quote,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-deletion,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-meta,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-comment,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-quote,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-deletion,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-meta,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-comment,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-quote,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-deletion,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-meta,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-comment,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-quote,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-deletion,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-meta,
.written-pads-show-page .database-desc-content .markdown-question .hljs-comment,
.written-pads-show-page .database-desc-content .markdown-question .hljs-quote,
.written-pads-show-page .database-desc-content .markdown-question .hljs-deletion,
.written-pads-show-page .database-desc-content .markdown-question .hljs-meta,
.written-pads-show-page .unittest-content .markdown-question .hljs-comment,
.written-pads-show-page .unittest-content .markdown-question .hljs-quote,
.written-pads-show-page .unittest-content .markdown-question .hljs-deletion,
.written-pads-show-page .unittest-content .markdown-question .hljs-meta,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-comment,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-quote,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-deletion,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-meta,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-comment,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-quote,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-deletion,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-meta,
.assessments-show-page .essay-question-page .markdown-question .hljs-comment,
.assessments-show-page .essay-question-page .markdown-question .hljs-quote,
.assessments-show-page .essay-question-page .markdown-question .hljs-deletion,
.assessments-show-page .essay-question-page .markdown-question .hljs-meta,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-comment,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-quote,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-deletion,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-meta,
.assessments-show-page .programming-question-page .markdown-question .hljs-comment,
.assessments-show-page .programming-question-page .markdown-question .hljs-quote,
.assessments-show-page .programming-question-page .markdown-question .hljs-deletion,
.assessments-show-page .programming-question-page .markdown-question .hljs-meta,
.assessments-show-page .choice-question-page .markdown-question .hljs-comment,
.assessments-show-page .choice-question-page .markdown-question .hljs-quote,
.assessments-show-page .choice-question-page .markdown-question .hljs-deletion,
.assessments-show-page .choice-question-page .markdown-question .hljs-meta,
.assessments-show-page .video-question-page .markdown-question .hljs-comment,
.assessments-show-page .video-question-page .markdown-question .hljs-quote,
.assessments-show-page .video-question-page .markdown-question .hljs-deletion,
.assessments-show-page .video-question-page .markdown-question .hljs-meta,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-comment,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-quote,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-deletion,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-meta,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-comment,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-quote,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-deletion,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-meta,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-comment,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-quote,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-deletion,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-meta,
.assessments-show-page .assessment-wrap .markdown-question .hljs-comment,
.assessments-show-page .assessment-wrap .markdown-question .hljs-quote,
.assessments-show-page .assessment-wrap .markdown-question .hljs-deletion,
.assessments-show-page .assessment-wrap .markdown-question .hljs-meta,
.assessments-show-page .mobile-question-content .markdown-question .hljs-comment,
.assessments-show-page .mobile-question-content .markdown-question .hljs-quote,
.assessments-show-page .mobile-question-content .markdown-question .hljs-deletion,
.assessments-show-page .mobile-question-content .markdown-question .hljs-meta,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-comment,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-quote,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-deletion,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-meta,
.assessments-show-page .database-desc-content .markdown-question .hljs-comment,
.assessments-show-page .database-desc-content .markdown-question .hljs-quote,
.assessments-show-page .database-desc-content .markdown-question .hljs-deletion,
.assessments-show-page .database-desc-content .markdown-question .hljs-meta,
.assessments-show-page .unittest-content .markdown-question .hljs-comment,
.assessments-show-page .unittest-content .markdown-question .hljs-quote,
.assessments-show-page .unittest-content .markdown-question .hljs-deletion,
.assessments-show-page .unittest-content .markdown-question .hljs-meta,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-comment,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-quote,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-deletion,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-meta,
.assessments-show-page .written-question-page-body .markdown-question .hljs-comment,
.assessments-show-page .written-question-page-body .markdown-question .hljs-quote,
.assessments-show-page .written-question-page-body .markdown-question .hljs-deletion,
.assessments-show-page .written-question-page-body .markdown-question .hljs-meta,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-comment,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-quote,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-deletion,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-meta,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-comment,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-quote,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-deletion,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-meta,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-comment,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-quote,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-deletion,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-meta,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-comment,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-quote,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-deletion,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-meta,
.paas-pads-show-page .video-question-page .markdown-question .hljs-comment,
.paas-pads-show-page .video-question-page .markdown-question .hljs-quote,
.paas-pads-show-page .video-question-page .markdown-question .hljs-deletion,
.paas-pads-show-page .video-question-page .markdown-question .hljs-meta,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-comment,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-quote,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-deletion,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-meta,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-comment,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-quote,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-deletion,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-meta,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-comment,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-quote,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-deletion,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-meta,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-comment,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-quote,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-deletion,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-meta,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-comment,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-quote,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-deletion,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-meta,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-comment,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-quote,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-deletion,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-meta,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-comment,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-quote,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-deletion,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-meta,
.paas-pads-show-page .unittest-content .markdown-question .hljs-comment,
.paas-pads-show-page .unittest-content .markdown-question .hljs-quote,
.paas-pads-show-page .unittest-content .markdown-question .hljs-deletion,
.paas-pads-show-page .unittest-content .markdown-question .hljs-meta,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-comment,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-quote,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-deletion,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-meta,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-comment,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-quote,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-deletion,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-meta,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-comment,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-quote,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-deletion,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-meta,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-comment,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-quote,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-deletion,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-meta,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-comment,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-quote,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-deletion,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-meta,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-comment,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-quote,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-deletion,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-meta,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-comment,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-quote,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-deletion,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-meta,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-comment,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-quote,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-deletion,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-meta,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-comment,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-quote,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-deletion,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-meta,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-comment,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-quote,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-deletion,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-meta,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-comment,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-quote,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-deletion,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-meta,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-comment,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-quote,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-deletion,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-meta,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-comment,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-quote,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-deletion,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-meta,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-comment,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-quote,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-deletion,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-meta,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-comment,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-quote,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-deletion,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-meta,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-comment,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-quote,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-deletion,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-meta,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-comment,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-quote,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-deletion,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-meta {
  color: #75715e;
}
.pads-show-page .essay-question-page .markdown-question .hljs-number,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-number,
.pads-show-page .programming-question-page .markdown-question .hljs-number,
.pads-show-page .choice-question-page .markdown-question .hljs-number,
.pads-show-page .video-question-page .markdown-question .hljs-number,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-number,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-number,
.pads-show-page .written-pad-wrap .markdown-question .hljs-number,
.pads-show-page .assessment-wrap .markdown-question .hljs-number,
.pads-show-page .mobile-question-content .markdown-question .hljs-number,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-number,
.pads-show-page .database-desc-content .markdown-question .hljs-number,
.pads-show-page .unittest-content .markdown-question .hljs-number,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-number,
.pads-show-page .written-question-page-body .markdown-question .hljs-number,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-number,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-number,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-number,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-number,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-number,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-number,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-number,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-number,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-number,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-number,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-number,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-number,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-number,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-number,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-number,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-number,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-number,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-number,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-number,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-number,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-number,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-number,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-number,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-number,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-number,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-number,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-number,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-number,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-number,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-number,
.written-pads-show-page .essay-question-page .markdown-question .hljs-number,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-number,
.written-pads-show-page .programming-question-page .markdown-question .hljs-number,
.written-pads-show-page .choice-question-page .markdown-question .hljs-number,
.written-pads-show-page .video-question-page .markdown-question .hljs-number,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-number,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-number,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-number,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-number,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-number,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-number,
.written-pads-show-page .database-desc-content .markdown-question .hljs-number,
.written-pads-show-page .unittest-content .markdown-question .hljs-number,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-number,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-number,
.assessments-show-page .essay-question-page .markdown-question .hljs-number,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-number,
.assessments-show-page .programming-question-page .markdown-question .hljs-number,
.assessments-show-page .choice-question-page .markdown-question .hljs-number,
.assessments-show-page .video-question-page .markdown-question .hljs-number,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-number,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-number,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-number,
.assessments-show-page .assessment-wrap .markdown-question .hljs-number,
.assessments-show-page .mobile-question-content .markdown-question .hljs-number,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-number,
.assessments-show-page .database-desc-content .markdown-question .hljs-number,
.assessments-show-page .unittest-content .markdown-question .hljs-number,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-number,
.assessments-show-page .written-question-page-body .markdown-question .hljs-number,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-number,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-number,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-number,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-number,
.paas-pads-show-page .video-question-page .markdown-question .hljs-number,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-number,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-number,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-number,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-number,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-number,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-number,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-number,
.paas-pads-show-page .unittest-content .markdown-question .hljs-number,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-number,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-number,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-number,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-number,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-number,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-number,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-number,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-number,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-number,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-number,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-number,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-number,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-number,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-number,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-number,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-number,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-number {
  color: #ae81ff;
}
.pads-show-page .essay-question-page .markdown-question table tr,
.pads-show-page .gap-filling-question-page .markdown-question table tr,
.pads-show-page .programming-question-page .markdown-question table tr,
.pads-show-page .choice-question-page .markdown-question table tr,
.pads-show-page .video-question-page .markdown-question table tr,
.pads-show-page .pad-vue-page .wrapper .markdown-question table tr,
.pads-show-page .paas-pad-wrap .markdown-question table tr,
.pads-show-page .written-pad-wrap .markdown-question table tr,
.pads-show-page .assessment-wrap .markdown-question table tr,
.pads-show-page .mobile-question-content .markdown-question table tr,
.pads-show-page .answer-content-markdown-wrap .markdown-question table tr,
.pads-show-page .database-desc-content .markdown-question table tr,
.pads-show-page .unittest-content .markdown-question table tr,
.pads-show-page .smb-markdown-preview-wrap .markdown-question table tr,
.pads-show-page .written-question-page-body .markdown-question table tr,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question table tr,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question table tr,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question table tr,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question table tr,
.paas-question-written-questions-edit-page .video-question-page .markdown-question table tr,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question table tr,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question table tr,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question table tr,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question table tr,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question table tr,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question table tr,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question table tr,
.paas-question-written-questions-edit-page .unittest-content .markdown-question table tr,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question table tr,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question table tr,
.paas-question-written-questions-show-page .essay-question-page .markdown-question table tr,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question table tr,
.paas-question-written-questions-show-page .programming-question-page .markdown-question table tr,
.paas-question-written-questions-show-page .choice-question-page .markdown-question table tr,
.paas-question-written-questions-show-page .video-question-page .markdown-question table tr,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question table tr,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question table tr,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question table tr,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question table tr,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question table tr,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question table tr,
.paas-question-written-questions-show-page .database-desc-content .markdown-question table tr,
.paas-question-written-questions-show-page .unittest-content .markdown-question table tr,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question table tr,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question table tr,
.written-pads-show-page .essay-question-page .markdown-question table tr,
.written-pads-show-page .gap-filling-question-page .markdown-question table tr,
.written-pads-show-page .programming-question-page .markdown-question table tr,
.written-pads-show-page .choice-question-page .markdown-question table tr,
.written-pads-show-page .video-question-page .markdown-question table tr,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question table tr,
.written-pads-show-page .paas-pad-wrap .markdown-question table tr,
.written-pads-show-page .written-pad-wrap .markdown-question table tr,
.written-pads-show-page .assessment-wrap .markdown-question table tr,
.written-pads-show-page .mobile-question-content .markdown-question table tr,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question table tr,
.written-pads-show-page .database-desc-content .markdown-question table tr,
.written-pads-show-page .unittest-content .markdown-question table tr,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question table tr,
.written-pads-show-page .written-question-page-body .markdown-question table tr,
.assessments-show-page .essay-question-page .markdown-question table tr,
.assessments-show-page .gap-filling-question-page .markdown-question table tr,
.assessments-show-page .programming-question-page .markdown-question table tr,
.assessments-show-page .choice-question-page .markdown-question table tr,
.assessments-show-page .video-question-page .markdown-question table tr,
.assessments-show-page .pad-vue-page .wrapper .markdown-question table tr,
.assessments-show-page .paas-pad-wrap .markdown-question table tr,
.assessments-show-page .written-pad-wrap .markdown-question table tr,
.assessments-show-page .assessment-wrap .markdown-question table tr,
.assessments-show-page .mobile-question-content .markdown-question table tr,
.assessments-show-page .answer-content-markdown-wrap .markdown-question table tr,
.assessments-show-page .database-desc-content .markdown-question table tr,
.assessments-show-page .unittest-content .markdown-question table tr,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question table tr,
.assessments-show-page .written-question-page-body .markdown-question table tr,
.paas-pads-show-page .essay-question-page .markdown-question table tr,
.paas-pads-show-page .gap-filling-question-page .markdown-question table tr,
.paas-pads-show-page .programming-question-page .markdown-question table tr,
.paas-pads-show-page .choice-question-page .markdown-question table tr,
.paas-pads-show-page .video-question-page .markdown-question table tr,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question table tr,
.paas-pads-show-page .paas-pad-wrap .markdown-question table tr,
.paas-pads-show-page .written-pad-wrap .markdown-question table tr,
.paas-pads-show-page .assessment-wrap .markdown-question table tr,
.paas-pads-show-page .mobile-question-content .markdown-question table tr,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question table tr,
.paas-pads-show-page .database-desc-content .markdown-question table tr,
.paas-pads-show-page .unittest-content .markdown-question table tr,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question table tr,
.paas-pads-show-page .written-question-page-body .markdown-question table tr,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question table tr,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question table tr,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question table tr,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question table tr,
.paas-snapshot-runners-show-page .video-question-page .markdown-question table tr,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question table tr,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question table tr,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question table tr,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question table tr,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question table tr,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question table tr,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question table tr,
.paas-snapshot-runners-show-page .unittest-content .markdown-question table tr,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question table tr,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question table tr {
  background-color: #3f6d98;
}
.pads-show-page .essay-question-page .markdown-question .hljs-keyword,
.pads-show-page .essay-question-page .markdown-question .hljs-selector-tag,
.pads-show-page .essay-question-page .markdown-question .hljs-literal,
.pads-show-page .essay-question-page .markdown-question .hljs-doctag,
.pads-show-page .essay-question-page .markdown-question .hljs-title,
.pads-show-page .essay-question-page .markdown-question .hljs-section,
.pads-show-page .essay-question-page .markdown-question .hljs-type,
.pads-show-page .essay-question-page .markdown-question .hljs-selector-id,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-keyword,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-selector-tag,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-literal,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-doctag,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-title,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-section,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-type,
.pads-show-page .gap-filling-question-page .markdown-question .hljs-selector-id,
.pads-show-page .programming-question-page .markdown-question .hljs-keyword,
.pads-show-page .programming-question-page .markdown-question .hljs-selector-tag,
.pads-show-page .programming-question-page .markdown-question .hljs-literal,
.pads-show-page .programming-question-page .markdown-question .hljs-doctag,
.pads-show-page .programming-question-page .markdown-question .hljs-title,
.pads-show-page .programming-question-page .markdown-question .hljs-section,
.pads-show-page .programming-question-page .markdown-question .hljs-type,
.pads-show-page .programming-question-page .markdown-question .hljs-selector-id,
.pads-show-page .choice-question-page .markdown-question .hljs-keyword,
.pads-show-page .choice-question-page .markdown-question .hljs-selector-tag,
.pads-show-page .choice-question-page .markdown-question .hljs-literal,
.pads-show-page .choice-question-page .markdown-question .hljs-doctag,
.pads-show-page .choice-question-page .markdown-question .hljs-title,
.pads-show-page .choice-question-page .markdown-question .hljs-section,
.pads-show-page .choice-question-page .markdown-question .hljs-type,
.pads-show-page .choice-question-page .markdown-question .hljs-selector-id,
.pads-show-page .video-question-page .markdown-question .hljs-keyword,
.pads-show-page .video-question-page .markdown-question .hljs-selector-tag,
.pads-show-page .video-question-page .markdown-question .hljs-literal,
.pads-show-page .video-question-page .markdown-question .hljs-doctag,
.pads-show-page .video-question-page .markdown-question .hljs-title,
.pads-show-page .video-question-page .markdown-question .hljs-section,
.pads-show-page .video-question-page .markdown-question .hljs-type,
.pads-show-page .video-question-page .markdown-question .hljs-selector-id,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-keyword,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-tag,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-literal,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-doctag,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-title,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-section,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-type,
.pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-id,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-keyword,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-selector-tag,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-literal,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-doctag,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-title,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-section,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-type,
.pads-show-page .paas-pad-wrap .markdown-question .hljs-selector-id,
.pads-show-page .written-pad-wrap .markdown-question .hljs-keyword,
.pads-show-page .written-pad-wrap .markdown-question .hljs-selector-tag,
.pads-show-page .written-pad-wrap .markdown-question .hljs-literal,
.pads-show-page .written-pad-wrap .markdown-question .hljs-doctag,
.pads-show-page .written-pad-wrap .markdown-question .hljs-title,
.pads-show-page .written-pad-wrap .markdown-question .hljs-section,
.pads-show-page .written-pad-wrap .markdown-question .hljs-type,
.pads-show-page .written-pad-wrap .markdown-question .hljs-selector-id,
.pads-show-page .assessment-wrap .markdown-question .hljs-keyword,
.pads-show-page .assessment-wrap .markdown-question .hljs-selector-tag,
.pads-show-page .assessment-wrap .markdown-question .hljs-literal,
.pads-show-page .assessment-wrap .markdown-question .hljs-doctag,
.pads-show-page .assessment-wrap .markdown-question .hljs-title,
.pads-show-page .assessment-wrap .markdown-question .hljs-section,
.pads-show-page .assessment-wrap .markdown-question .hljs-type,
.pads-show-page .assessment-wrap .markdown-question .hljs-selector-id,
.pads-show-page .mobile-question-content .markdown-question .hljs-keyword,
.pads-show-page .mobile-question-content .markdown-question .hljs-selector-tag,
.pads-show-page .mobile-question-content .markdown-question .hljs-literal,
.pads-show-page .mobile-question-content .markdown-question .hljs-doctag,
.pads-show-page .mobile-question-content .markdown-question .hljs-title,
.pads-show-page .mobile-question-content .markdown-question .hljs-section,
.pads-show-page .mobile-question-content .markdown-question .hljs-type,
.pads-show-page .mobile-question-content .markdown-question .hljs-selector-id,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-keyword,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-tag,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-literal,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-doctag,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-title,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-section,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-type,
.pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-id,
.pads-show-page .database-desc-content .markdown-question .hljs-keyword,
.pads-show-page .database-desc-content .markdown-question .hljs-selector-tag,
.pads-show-page .database-desc-content .markdown-question .hljs-literal,
.pads-show-page .database-desc-content .markdown-question .hljs-doctag,
.pads-show-page .database-desc-content .markdown-question .hljs-title,
.pads-show-page .database-desc-content .markdown-question .hljs-section,
.pads-show-page .database-desc-content .markdown-question .hljs-type,
.pads-show-page .database-desc-content .markdown-question .hljs-selector-id,
.pads-show-page .unittest-content .markdown-question .hljs-keyword,
.pads-show-page .unittest-content .markdown-question .hljs-selector-tag,
.pads-show-page .unittest-content .markdown-question .hljs-literal,
.pads-show-page .unittest-content .markdown-question .hljs-doctag,
.pads-show-page .unittest-content .markdown-question .hljs-title,
.pads-show-page .unittest-content .markdown-question .hljs-section,
.pads-show-page .unittest-content .markdown-question .hljs-type,
.pads-show-page .unittest-content .markdown-question .hljs-selector-id,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-keyword,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-tag,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-literal,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-doctag,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-title,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-section,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-type,
.pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-id,
.pads-show-page .written-question-page-body .markdown-question .hljs-keyword,
.pads-show-page .written-question-page-body .markdown-question .hljs-selector-tag,
.pads-show-page .written-question-page-body .markdown-question .hljs-literal,
.pads-show-page .written-question-page-body .markdown-question .hljs-doctag,
.pads-show-page .written-question-page-body .markdown-question .hljs-title,
.pads-show-page .written-question-page-body .markdown-question .hljs-section,
.pads-show-page .written-question-page-body .markdown-question .hljs-type,
.pads-show-page .written-question-page-body .markdown-question .hljs-selector-id,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-doctag,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .essay-question-page .markdown-question .hljs-selector-id,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-doctag,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .gap-filling-question-page .markdown-question .hljs-selector-id,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-doctag,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .programming-question-page .markdown-question .hljs-selector-id,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-doctag,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .choice-question-page .markdown-question .hljs-selector-id,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-doctag,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .video-question-page .markdown-question .hljs-selector-id,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-doctag,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .pad-vue-page .wrapper .markdown-question .hljs-selector-id,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-doctag,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .paas-pad-wrap .markdown-question .hljs-selector-id,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-doctag,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .written-pad-wrap .markdown-question .hljs-selector-id,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-doctag,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .assessment-wrap .markdown-question .hljs-selector-id,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-doctag,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .mobile-question-content .markdown-question .hljs-selector-id,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-doctag,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .answer-content-markdown-wrap .markdown-question .hljs-selector-id,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-doctag,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .database-desc-content .markdown-question .hljs-selector-id,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-doctag,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .unittest-content .markdown-question .hljs-selector-id,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-doctag,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-id,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-keyword,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-selector-tag,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-literal,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-doctag,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-title,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-section,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-type,
.paas-question-written-questions-edit-page .written-question-page-body .markdown-question .hljs-selector-id,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-doctag,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-title,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-section,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-type,
.paas-question-written-questions-show-page .essay-question-page .markdown-question .hljs-selector-id,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-doctag,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-title,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-section,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-type,
.paas-question-written-questions-show-page .gap-filling-question-page .markdown-question .hljs-selector-id,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-doctag,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-title,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-section,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-type,
.paas-question-written-questions-show-page .programming-question-page .markdown-question .hljs-selector-id,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-doctag,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-title,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-section,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-type,
.paas-question-written-questions-show-page .choice-question-page .markdown-question .hljs-selector-id,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-doctag,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-title,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-section,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-type,
.paas-question-written-questions-show-page .video-question-page .markdown-question .hljs-selector-id,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-doctag,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-title,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-section,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-type,
.paas-question-written-questions-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-id,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-doctag,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-title,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-section,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-type,
.paas-question-written-questions-show-page .paas-pad-wrap .markdown-question .hljs-selector-id,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-doctag,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-title,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-section,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-type,
.paas-question-written-questions-show-page .written-pad-wrap .markdown-question .hljs-selector-id,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-doctag,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-title,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-section,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-type,
.paas-question-written-questions-show-page .assessment-wrap .markdown-question .hljs-selector-id,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-doctag,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-title,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-section,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-type,
.paas-question-written-questions-show-page .mobile-question-content .markdown-question .hljs-selector-id,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-doctag,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-title,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-section,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-type,
.paas-question-written-questions-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-id,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-doctag,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-title,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-section,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-type,
.paas-question-written-questions-show-page .database-desc-content .markdown-question .hljs-selector-id,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-doctag,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-title,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-section,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-type,
.paas-question-written-questions-show-page .unittest-content .markdown-question .hljs-selector-id,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-doctag,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-title,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-section,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-type,
.paas-question-written-questions-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-id,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-keyword,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-selector-tag,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-literal,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-doctag,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-title,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-section,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-type,
.paas-question-written-questions-show-page .written-question-page-body .markdown-question .hljs-selector-id,
.written-pads-show-page .essay-question-page .markdown-question .hljs-keyword,
.written-pads-show-page .essay-question-page .markdown-question .hljs-selector-tag,
.written-pads-show-page .essay-question-page .markdown-question .hljs-literal,
.written-pads-show-page .essay-question-page .markdown-question .hljs-doctag,
.written-pads-show-page .essay-question-page .markdown-question .hljs-title,
.written-pads-show-page .essay-question-page .markdown-question .hljs-section,
.written-pads-show-page .essay-question-page .markdown-question .hljs-type,
.written-pads-show-page .essay-question-page .markdown-question .hljs-selector-id,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-keyword,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-selector-tag,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-literal,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-doctag,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-title,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-section,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-type,
.written-pads-show-page .gap-filling-question-page .markdown-question .hljs-selector-id,
.written-pads-show-page .programming-question-page .markdown-question .hljs-keyword,
.written-pads-show-page .programming-question-page .markdown-question .hljs-selector-tag,
.written-pads-show-page .programming-question-page .markdown-question .hljs-literal,
.written-pads-show-page .programming-question-page .markdown-question .hljs-doctag,
.written-pads-show-page .programming-question-page .markdown-question .hljs-title,
.written-pads-show-page .programming-question-page .markdown-question .hljs-section,
.written-pads-show-page .programming-question-page .markdown-question .hljs-type,
.written-pads-show-page .programming-question-page .markdown-question .hljs-selector-id,
.written-pads-show-page .choice-question-page .markdown-question .hljs-keyword,
.written-pads-show-page .choice-question-page .markdown-question .hljs-selector-tag,
.written-pads-show-page .choice-question-page .markdown-question .hljs-literal,
.written-pads-show-page .choice-question-page .markdown-question .hljs-doctag,
.written-pads-show-page .choice-question-page .markdown-question .hljs-title,
.written-pads-show-page .choice-question-page .markdown-question .hljs-section,
.written-pads-show-page .choice-question-page .markdown-question .hljs-type,
.written-pads-show-page .choice-question-page .markdown-question .hljs-selector-id,
.written-pads-show-page .video-question-page .markdown-question .hljs-keyword,
.written-pads-show-page .video-question-page .markdown-question .hljs-selector-tag,
.written-pads-show-page .video-question-page .markdown-question .hljs-literal,
.written-pads-show-page .video-question-page .markdown-question .hljs-doctag,
.written-pads-show-page .video-question-page .markdown-question .hljs-title,
.written-pads-show-page .video-question-page .markdown-question .hljs-section,
.written-pads-show-page .video-question-page .markdown-question .hljs-type,
.written-pads-show-page .video-question-page .markdown-question .hljs-selector-id,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-keyword,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-tag,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-literal,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-doctag,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-title,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-section,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-type,
.written-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-id,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-keyword,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-selector-tag,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-literal,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-doctag,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-title,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-section,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-type,
.written-pads-show-page .paas-pad-wrap .markdown-question .hljs-selector-id,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-keyword,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-selector-tag,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-literal,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-doctag,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-title,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-section,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-type,
.written-pads-show-page .written-pad-wrap .markdown-question .hljs-selector-id,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-keyword,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-selector-tag,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-literal,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-doctag,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-title,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-section,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-type,
.written-pads-show-page .assessment-wrap .markdown-question .hljs-selector-id,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-keyword,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-selector-tag,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-literal,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-doctag,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-title,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-section,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-type,
.written-pads-show-page .mobile-question-content .markdown-question .hljs-selector-id,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-keyword,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-tag,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-literal,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-doctag,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-title,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-section,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-type,
.written-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-id,
.written-pads-show-page .database-desc-content .markdown-question .hljs-keyword,
.written-pads-show-page .database-desc-content .markdown-question .hljs-selector-tag,
.written-pads-show-page .database-desc-content .markdown-question .hljs-literal,
.written-pads-show-page .database-desc-content .markdown-question .hljs-doctag,
.written-pads-show-page .database-desc-content .markdown-question .hljs-title,
.written-pads-show-page .database-desc-content .markdown-question .hljs-section,
.written-pads-show-page .database-desc-content .markdown-question .hljs-type,
.written-pads-show-page .database-desc-content .markdown-question .hljs-selector-id,
.written-pads-show-page .unittest-content .markdown-question .hljs-keyword,
.written-pads-show-page .unittest-content .markdown-question .hljs-selector-tag,
.written-pads-show-page .unittest-content .markdown-question .hljs-literal,
.written-pads-show-page .unittest-content .markdown-question .hljs-doctag,
.written-pads-show-page .unittest-content .markdown-question .hljs-title,
.written-pads-show-page .unittest-content .markdown-question .hljs-section,
.written-pads-show-page .unittest-content .markdown-question .hljs-type,
.written-pads-show-page .unittest-content .markdown-question .hljs-selector-id,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-keyword,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-tag,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-literal,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-doctag,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-title,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-section,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-type,
.written-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-id,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-keyword,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-selector-tag,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-literal,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-doctag,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-title,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-section,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-type,
.written-pads-show-page .written-question-page-body .markdown-question .hljs-selector-id,
.assessments-show-page .essay-question-page .markdown-question .hljs-keyword,
.assessments-show-page .essay-question-page .markdown-question .hljs-selector-tag,
.assessments-show-page .essay-question-page .markdown-question .hljs-literal,
.assessments-show-page .essay-question-page .markdown-question .hljs-doctag,
.assessments-show-page .essay-question-page .markdown-question .hljs-title,
.assessments-show-page .essay-question-page .markdown-question .hljs-section,
.assessments-show-page .essay-question-page .markdown-question .hljs-type,
.assessments-show-page .essay-question-page .markdown-question .hljs-selector-id,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-keyword,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-selector-tag,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-literal,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-doctag,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-title,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-section,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-type,
.assessments-show-page .gap-filling-question-page .markdown-question .hljs-selector-id,
.assessments-show-page .programming-question-page .markdown-question .hljs-keyword,
.assessments-show-page .programming-question-page .markdown-question .hljs-selector-tag,
.assessments-show-page .programming-question-page .markdown-question .hljs-literal,
.assessments-show-page .programming-question-page .markdown-question .hljs-doctag,
.assessments-show-page .programming-question-page .markdown-question .hljs-title,
.assessments-show-page .programming-question-page .markdown-question .hljs-section,
.assessments-show-page .programming-question-page .markdown-question .hljs-type,
.assessments-show-page .programming-question-page .markdown-question .hljs-selector-id,
.assessments-show-page .choice-question-page .markdown-question .hljs-keyword,
.assessments-show-page .choice-question-page .markdown-question .hljs-selector-tag,
.assessments-show-page .choice-question-page .markdown-question .hljs-literal,
.assessments-show-page .choice-question-page .markdown-question .hljs-doctag,
.assessments-show-page .choice-question-page .markdown-question .hljs-title,
.assessments-show-page .choice-question-page .markdown-question .hljs-section,
.assessments-show-page .choice-question-page .markdown-question .hljs-type,
.assessments-show-page .choice-question-page .markdown-question .hljs-selector-id,
.assessments-show-page .video-question-page .markdown-question .hljs-keyword,
.assessments-show-page .video-question-page .markdown-question .hljs-selector-tag,
.assessments-show-page .video-question-page .markdown-question .hljs-literal,
.assessments-show-page .video-question-page .markdown-question .hljs-doctag,
.assessments-show-page .video-question-page .markdown-question .hljs-title,
.assessments-show-page .video-question-page .markdown-question .hljs-section,
.assessments-show-page .video-question-page .markdown-question .hljs-type,
.assessments-show-page .video-question-page .markdown-question .hljs-selector-id,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-keyword,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-tag,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-literal,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-doctag,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-title,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-section,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-type,
.assessments-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-id,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-keyword,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-selector-tag,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-literal,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-doctag,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-title,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-section,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-type,
.assessments-show-page .paas-pad-wrap .markdown-question .hljs-selector-id,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-keyword,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-selector-tag,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-literal,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-doctag,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-title,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-section,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-type,
.assessments-show-page .written-pad-wrap .markdown-question .hljs-selector-id,
.assessments-show-page .assessment-wrap .markdown-question .hljs-keyword,
.assessments-show-page .assessment-wrap .markdown-question .hljs-selector-tag,
.assessments-show-page .assessment-wrap .markdown-question .hljs-literal,
.assessments-show-page .assessment-wrap .markdown-question .hljs-doctag,
.assessments-show-page .assessment-wrap .markdown-question .hljs-title,
.assessments-show-page .assessment-wrap .markdown-question .hljs-section,
.assessments-show-page .assessment-wrap .markdown-question .hljs-type,
.assessments-show-page .assessment-wrap .markdown-question .hljs-selector-id,
.assessments-show-page .mobile-question-content .markdown-question .hljs-keyword,
.assessments-show-page .mobile-question-content .markdown-question .hljs-selector-tag,
.assessments-show-page .mobile-question-content .markdown-question .hljs-literal,
.assessments-show-page .mobile-question-content .markdown-question .hljs-doctag,
.assessments-show-page .mobile-question-content .markdown-question .hljs-title,
.assessments-show-page .mobile-question-content .markdown-question .hljs-section,
.assessments-show-page .mobile-question-content .markdown-question .hljs-type,
.assessments-show-page .mobile-question-content .markdown-question .hljs-selector-id,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-keyword,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-tag,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-literal,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-doctag,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-title,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-section,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-type,
.assessments-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-id,
.assessments-show-page .database-desc-content .markdown-question .hljs-keyword,
.assessments-show-page .database-desc-content .markdown-question .hljs-selector-tag,
.assessments-show-page .database-desc-content .markdown-question .hljs-literal,
.assessments-show-page .database-desc-content .markdown-question .hljs-doctag,
.assessments-show-page .database-desc-content .markdown-question .hljs-title,
.assessments-show-page .database-desc-content .markdown-question .hljs-section,
.assessments-show-page .database-desc-content .markdown-question .hljs-type,
.assessments-show-page .database-desc-content .markdown-question .hljs-selector-id,
.assessments-show-page .unittest-content .markdown-question .hljs-keyword,
.assessments-show-page .unittest-content .markdown-question .hljs-selector-tag,
.assessments-show-page .unittest-content .markdown-question .hljs-literal,
.assessments-show-page .unittest-content .markdown-question .hljs-doctag,
.assessments-show-page .unittest-content .markdown-question .hljs-title,
.assessments-show-page .unittest-content .markdown-question .hljs-section,
.assessments-show-page .unittest-content .markdown-question .hljs-type,
.assessments-show-page .unittest-content .markdown-question .hljs-selector-id,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-keyword,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-tag,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-literal,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-doctag,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-title,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-section,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-type,
.assessments-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-id,
.assessments-show-page .written-question-page-body .markdown-question .hljs-keyword,
.assessments-show-page .written-question-page-body .markdown-question .hljs-selector-tag,
.assessments-show-page .written-question-page-body .markdown-question .hljs-literal,
.assessments-show-page .written-question-page-body .markdown-question .hljs-doctag,
.assessments-show-page .written-question-page-body .markdown-question .hljs-title,
.assessments-show-page .written-question-page-body .markdown-question .hljs-section,
.assessments-show-page .written-question-page-body .markdown-question .hljs-type,
.assessments-show-page .written-question-page-body .markdown-question .hljs-selector-id,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-keyword,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-selector-tag,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-literal,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-doctag,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-title,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-section,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-type,
.paas-pads-show-page .essay-question-page .markdown-question .hljs-selector-id,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-keyword,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-selector-tag,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-literal,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-doctag,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-title,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-section,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-type,
.paas-pads-show-page .gap-filling-question-page .markdown-question .hljs-selector-id,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-keyword,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-selector-tag,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-literal,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-doctag,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-title,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-section,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-type,
.paas-pads-show-page .programming-question-page .markdown-question .hljs-selector-id,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-keyword,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-selector-tag,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-literal,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-doctag,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-title,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-section,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-type,
.paas-pads-show-page .choice-question-page .markdown-question .hljs-selector-id,
.paas-pads-show-page .video-question-page .markdown-question .hljs-keyword,
.paas-pads-show-page .video-question-page .markdown-question .hljs-selector-tag,
.paas-pads-show-page .video-question-page .markdown-question .hljs-literal,
.paas-pads-show-page .video-question-page .markdown-question .hljs-doctag,
.paas-pads-show-page .video-question-page .markdown-question .hljs-title,
.paas-pads-show-page .video-question-page .markdown-question .hljs-section,
.paas-pads-show-page .video-question-page .markdown-question .hljs-type,
.paas-pads-show-page .video-question-page .markdown-question .hljs-selector-id,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-keyword,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-tag,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-literal,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-doctag,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-title,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-section,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-type,
.paas-pads-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-id,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-keyword,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-selector-tag,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-literal,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-doctag,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-title,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-section,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-type,
.paas-pads-show-page .paas-pad-wrap .markdown-question .hljs-selector-id,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-keyword,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-selector-tag,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-literal,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-doctag,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-title,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-section,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-type,
.paas-pads-show-page .written-pad-wrap .markdown-question .hljs-selector-id,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-keyword,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-selector-tag,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-literal,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-doctag,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-title,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-section,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-type,
.paas-pads-show-page .assessment-wrap .markdown-question .hljs-selector-id,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-keyword,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-selector-tag,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-literal,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-doctag,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-title,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-section,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-type,
.paas-pads-show-page .mobile-question-content .markdown-question .hljs-selector-id,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-keyword,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-tag,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-literal,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-doctag,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-title,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-section,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-type,
.paas-pads-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-id,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-keyword,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-selector-tag,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-literal,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-doctag,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-title,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-section,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-type,
.paas-pads-show-page .database-desc-content .markdown-question .hljs-selector-id,
.paas-pads-show-page .unittest-content .markdown-question .hljs-keyword,
.paas-pads-show-page .unittest-content .markdown-question .hljs-selector-tag,
.paas-pads-show-page .unittest-content .markdown-question .hljs-literal,
.paas-pads-show-page .unittest-content .markdown-question .hljs-doctag,
.paas-pads-show-page .unittest-content .markdown-question .hljs-title,
.paas-pads-show-page .unittest-content .markdown-question .hljs-section,
.paas-pads-show-page .unittest-content .markdown-question .hljs-type,
.paas-pads-show-page .unittest-content .markdown-question .hljs-selector-id,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-keyword,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-tag,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-literal,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-doctag,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-title,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-section,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-type,
.paas-pads-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-id,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-keyword,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-selector-tag,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-literal,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-doctag,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-title,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-section,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-type,
.paas-pads-show-page .written-question-page-body .markdown-question .hljs-selector-id,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-doctag,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .essay-question-page .markdown-question .hljs-selector-id,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-doctag,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .gap-filling-question-page .markdown-question .hljs-selector-id,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-doctag,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .programming-question-page .markdown-question .hljs-selector-id,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-doctag,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .choice-question-page .markdown-question .hljs-selector-id,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-doctag,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .video-question-page .markdown-question .hljs-selector-id,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-doctag,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .pad-vue-page .wrapper .markdown-question .hljs-selector-id,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-doctag,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .paas-pad-wrap .markdown-question .hljs-selector-id,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-doctag,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .written-pad-wrap .markdown-question .hljs-selector-id,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-doctag,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .assessment-wrap .markdown-question .hljs-selector-id,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-doctag,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .mobile-question-content .markdown-question .hljs-selector-id,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-doctag,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .answer-content-markdown-wrap .markdown-question .hljs-selector-id,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-doctag,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .database-desc-content .markdown-question .hljs-selector-id,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-doctag,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .unittest-content .markdown-question .hljs-selector-id,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-doctag,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .smb-markdown-preview-wrap .markdown-question .hljs-selector-id,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-keyword,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-selector-tag,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-literal,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-doctag,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-title,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-section,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-type,
.paas-snapshot-runners-show-page .written-question-page-body .markdown-question .hljs-selector-id {
  font-weight: bold;
}
.pads-show-page .dialog-body.markdown-question h1,
.pads-show-page .dialog-body.markdown-question h2,
.pads-show-page .dialog-body.markdown-question h3,
.pads-show-page .dialog-body.markdown-question h4,
.pads-show-page .dialog-body.markdown-question h5,
.pads-show-page .dialog-body.markdown-question h6,
.pads-show-page .dialog-body.markdown-question p,
.paas-question-written-questions-edit-page .dialog-body.markdown-question h1,
.paas-question-written-questions-edit-page .dialog-body.markdown-question h2,
.paas-question-written-questions-edit-page .dialog-body.markdown-question h3,
.paas-question-written-questions-edit-page .dialog-body.markdown-question h4,
.paas-question-written-questions-edit-page .dialog-body.markdown-question h5,
.paas-question-written-questions-edit-page .dialog-body.markdown-question h6,
.paas-question-written-questions-edit-page .dialog-body.markdown-question p,
.paas-question-written-questions-show-page .dialog-body.markdown-question h1,
.paas-question-written-questions-show-page .dialog-body.markdown-question h2,
.paas-question-written-questions-show-page .dialog-body.markdown-question h3,
.paas-question-written-questions-show-page .dialog-body.markdown-question h4,
.paas-question-written-questions-show-page .dialog-body.markdown-question h5,
.paas-question-written-questions-show-page .dialog-body.markdown-question h6,
.paas-question-written-questions-show-page .dialog-body.markdown-question p,
.written-pads-show-page .dialog-body.markdown-question h1,
.written-pads-show-page .dialog-body.markdown-question h2,
.written-pads-show-page .dialog-body.markdown-question h3,
.written-pads-show-page .dialog-body.markdown-question h4,
.written-pads-show-page .dialog-body.markdown-question h5,
.written-pads-show-page .dialog-body.markdown-question h6,
.written-pads-show-page .dialog-body.markdown-question p,
.assessments-show-page .dialog-body.markdown-question h1,
.assessments-show-page .dialog-body.markdown-question h2,
.assessments-show-page .dialog-body.markdown-question h3,
.assessments-show-page .dialog-body.markdown-question h4,
.assessments-show-page .dialog-body.markdown-question h5,
.assessments-show-page .dialog-body.markdown-question h6,
.assessments-show-page .dialog-body.markdown-question p,
.paas-pads-show-page .dialog-body.markdown-question h1,
.paas-pads-show-page .dialog-body.markdown-question h2,
.paas-pads-show-page .dialog-body.markdown-question h3,
.paas-pads-show-page .dialog-body.markdown-question h4,
.paas-pads-show-page .dialog-body.markdown-question h5,
.paas-pads-show-page .dialog-body.markdown-question h6,
.paas-pads-show-page .dialog-body.markdown-question p,
.paas-snapshot-runners-show-page .dialog-body.markdown-question h1,
.paas-snapshot-runners-show-page .dialog-body.markdown-question h2,
.paas-snapshot-runners-show-page .dialog-body.markdown-question h3,
.paas-snapshot-runners-show-page .dialog-body.markdown-question h4,
.paas-snapshot-runners-show-page .dialog-body.markdown-question h5,
.paas-snapshot-runners-show-page .dialog-body.markdown-question h6,
.paas-snapshot-runners-show-page .dialog-body.markdown-question p {
  color: #333;
}
.pads-show-page .markdown-question pre code,
.paas-question-written-questions-edit-page .markdown-question pre code,
.paas-question-written-questions-show-page .markdown-question pre code,
.written-pads-show-page .markdown-question pre code,
.assessments-show-page .markdown-question pre code,
.paas-pads-show-page .markdown-question pre code,
.paas-snapshot-runners-show-page .markdown-question pre code {
  position: relative;
}
.pads-show-page .markdown-question pre code .copy-code,
.paas-question-written-questions-edit-page .markdown-question pre code .copy-code,
.paas-question-written-questions-show-page .markdown-question pre code .copy-code,
.written-pads-show-page .markdown-question pre code .copy-code,
.assessments-show-page .markdown-question pre code .copy-code,
.paas-pads-show-page .markdown-question pre code .copy-code,
.paas-snapshot-runners-show-page .markdown-question pre code .copy-code {
  position: absolute;
  right: 8px;
  top: 8px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 8px;
  color: #fff;
  display: none;
  cursor: pointer;
  border-radius: 8px;
}
.pads-show-page .markdown-question pre code:hover .copy-code,
.paas-question-written-questions-edit-page .markdown-question pre code:hover .copy-code,
.paas-question-written-questions-show-page .markdown-question pre code:hover .copy-code,
.written-pads-show-page .markdown-question pre code:hover .copy-code,
.assessments-show-page .markdown-question pre code:hover .copy-code,
.paas-pads-show-page .markdown-question pre code:hover .copy-code,
.paas-snapshot-runners-show-page .markdown-question pre code:hover .copy-code {
  display: block;
}
.pads-show-page .markdown-question-snippet audio,
.pads-show-page .markdown-question-snippet video,
.paas-question-written-questions-edit-page .markdown-question-snippet audio,
.paas-question-written-questions-edit-page .markdown-question-snippet video,
.paas-question-written-questions-show-page .markdown-question-snippet audio,
.paas-question-written-questions-show-page .markdown-question-snippet video,
.written-pads-show-page .markdown-question-snippet audio,
.written-pads-show-page .markdown-question-snippet video,
.assessments-show-page .markdown-question-snippet audio,
.assessments-show-page .markdown-question-snippet video,
.paas-pads-show-page .markdown-question-snippet audio,
.paas-pads-show-page .markdown-question-snippet video,
.paas-snapshot-runners-show-page .markdown-question-snippet audio,
.paas-snapshot-runners-show-page .markdown-question-snippet video {
  width: 100%;
}

.pads-show-page .programming-question-page .markdown-question h1,
.pads-show-page .programming-question-page .markdown-question h2,
.pads-show-page .programming-question-page .markdown-question h3,
.pads-show-page .programming-question-page .markdown-question h4,
.pads-show-page .programming-question-page .markdown-question h5,
.pads-show-page .programming-question-page .markdown-question h6,
.pads-show-page .programming-question-page .markdown-question pre code,
.pads-show-page .video-question-page .markdown-question h1,
.pads-show-page .video-question-page .markdown-question h2,
.pads-show-page .video-question-page .markdown-question h3,
.pads-show-page .video-question-page .markdown-question h4,
.pads-show-page .video-question-page .markdown-question h5,
.pads-show-page .video-question-page .markdown-question h6,
.pads-show-page .video-question-page .markdown-question pre code,
.pads-show-page .pad-vue-page .wrapper .markdown-question h1,
.pads-show-page .pad-vue-page .wrapper .markdown-question h2,
.pads-show-page .pad-vue-page .wrapper .markdown-question h3,
.pads-show-page .pad-vue-page .wrapper .markdown-question h4,
.pads-show-page .pad-vue-page .wrapper .markdown-question h5,
.pads-show-page .pad-vue-page .wrapper .markdown-question h6,
.pads-show-page .pad-vue-page .wrapper .markdown-question pre code,
.pads-show-page .written-question-page-body .markdown-question h1,
.pads-show-page .written-question-page-body .markdown-question h2,
.pads-show-page .written-question-page-body .markdown-question h3,
.pads-show-page .written-question-page-body .markdown-question h4,
.pads-show-page .written-question-page-body .markdown-question h5,
.pads-show-page .written-question-page-body .markdown-question h6,
.pads-show-page .written-question-page-body .markdown-question pre code {
  color: #ffffff;
}
.pads-show-page .programming-question-page .markdown-question .highlight pre,
.pads-show-page .programming-question-page .markdown-question code,
.pads-show-page .video-question-page .markdown-question .highlight pre,
.pads-show-page .video-question-page .markdown-question code,
.pads-show-page .pad-vue-page .wrapper .markdown-question .highlight pre,
.pads-show-page .pad-vue-page .wrapper .markdown-question code,
.pads-show-page .written-question-page-body .markdown-question .highlight pre,
.pads-show-page .written-question-page-body .markdown-question code {
  background: #353535;
}
.pads-show-page .programming-question-page .markdown-question pre,
.pads-show-page .video-question-page .markdown-question pre,
.pads-show-page .pad-vue-page .wrapper .markdown-question pre,
.pads-show-page .written-question-page-body .markdown-question pre {
  background: #353535;
}
.pads-show-page .programming-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.pads-show-page .video-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar,
.pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre::-webkit-scrollbar,
.pads-show-page .written-question-page-body .markdown-question.test-description-pre pre::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: unset;
}
.pads-show-page .programming-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.pads-show-page .video-question-page .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb,
.pads-show-page .written-question-page-body .markdown-question.test-description-pre pre::-webkit-scrollbar-thumb {
  background: #222222;
}
.pads-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.pads-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar,
.pads-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar {
  background: #353535;
}
.pads-show-page .programming-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.pads-show-page .video-question-page .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.pads-show-page .pad-vue-page .wrapper .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb,
.pads-show-page .written-question-page-body .markdown-question.test-description-pre.written-pad pre::-webkit-scrollbar-thumb {
  background: #222222;
}
.pads-show-page .programming-question-page .markdown-question blockquote,
.pads-show-page .video-question-page .markdown-question blockquote,
.pads-show-page .pad-vue-page .wrapper .markdown-question blockquote,
.pads-show-page .written-question-page-body .markdown-question blockquote {
  background: #353535;
}

.markdown-plaintext {
  /*
  Monokai style - ported by Luigi Maselli - http://grigio.org
  */
}
.markdown-plaintext h1,
.markdown-plaintext h2,
.markdown-plaintext h3,
.markdown-plaintext h4,
.markdown-plaintext h5,
.markdown-plaintext h6,
.markdown-plaintext pre code {
  color: #f5f7fa;
}
.markdown-plaintext .highlight pre,
.markdown-plaintext pre {
  padding: 16px;
  overflow: auto;
  font-size: 85%;
  line-height: 1.45;
  background: #353535;
  border-radius: 3px;
}
.markdown-plaintext blockquote {
  background: #353535;
  color: #fff;
}
.markdown-plaintext .hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  background: #272822;
  color: #ddd;
}
.markdown-plaintext .hljs-tag,
.markdown-plaintext .hljs-keyword,
.markdown-plaintext .hljs-selector-tag,
.markdown-plaintext .hljs-literal,
.markdown-plaintext .hljs-strong,
.markdown-plaintext .hljs-name {
  color: #f92672;
}
.markdown-plaintext .hljs-code {
  color: #66d9ef;
}
.markdown-plaintext .hljs-class .hljs-title {
  color: white;
}
.markdown-plaintext .hljs-attribute,
.markdown-plaintext .hljs-symbol,
.markdown-plaintext .hljs-regexp,
.markdown-plaintext .hljs-link {
  color: #bf79db;
}
.markdown-plaintext .hljs-string,
.markdown-plaintext .hljs-bullet,
.markdown-plaintext .hljs-subst,
.markdown-plaintext .hljs-title,
.markdown-plaintext .hljs-section,
.markdown-plaintext .hljs-emphasis,
.markdown-plaintext .hljs-type,
.markdown-plaintext .hljs-built_in,
.markdown-plaintext .hljs-builtin-name,
.markdown-plaintext .hljs-selector-attr,
.markdown-plaintext .hljs-selector-pseudo,
.markdown-plaintext .hljs-addition,
.markdown-plaintext .hljs-variable,
.markdown-plaintext .hljs-template-tag,
.markdown-plaintext .hljs-template-variable {
  color: #a6e22e;
}
.markdown-plaintext .hljs-comment,
.markdown-plaintext .hljs-quote,
.markdown-plaintext .hljs-deletion,
.markdown-plaintext .hljs-meta {
  color: #75715e;
}
.markdown-plaintext .hljs-number {
  color: #ae81ff;
}
.markdown-plaintext table tr {
  background-color: #3f6d98;
}
.markdown-plaintext .hljs-keyword,
.markdown-plaintext .hljs-selector-tag,
.markdown-plaintext .hljs-literal,
.markdown-plaintext .hljs-doctag,
.markdown-plaintext .hljs-title,
.markdown-plaintext .hljs-section,
.markdown-plaintext .hljs-type,
.markdown-plaintext .hljs-selector-id {
  font-weight: bold;
}

.markdown-question {
  /*

  Atom One Dark by Daniel Gamage
  Original One Dark Syntax theme from https://github.com/atom/one-dark-syntax

  base:    #282c34
  mono-1:  #abb2bf
  mono-2:  #818896
  mono-3:  #5c6370
  hue-1:   #56b6c2
  hue-2:   #61aeee
  hue-3:   #c678dd
  hue-4:   #98c379
  hue-5:   #e06c75
  hue-5-2: #be5046
  hue-6:   #d19a66
  hue-6-2: #e6c07b

  */
}
.markdown-question .hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  color: #abb2bf;
  background: #282c34;
}
.markdown-question .hljs-comment,
.markdown-question .hljs-quote {
  color: #5c6370;
  font-style: italic;
}
.markdown-question .hljs-doctag,
.markdown-question .hljs-keyword,
.markdown-question .hljs-formula {
  color: #c678dd;
}
.markdown-question .hljs-section,
.markdown-question .hljs-name,
.markdown-question .hljs-selector-tag,
.markdown-question .hljs-deletion,
.markdown-question .hljs-subst {
  color: #e06c75;
}
.markdown-question .hljs-literal {
  color: #56b6c2;
}
.markdown-question .hljs-string,
.markdown-question .hljs-regexp,
.markdown-question .hljs-addition,
.markdown-question .hljs-attribute,
.markdown-question .hljs-meta-string {
  color: #98c379;
}
.markdown-question .hljs-built_in,
.markdown-question .hljs-class .hljs-title {
  color: #e6c07b;
}
.markdown-question .hljs-attr,
.markdown-question .hljs-variable,
.markdown-question .hljs-template-variable,
.markdown-question .hljs-type,
.markdown-question .hljs-selector-class,
.markdown-question .hljs-selector-attr,
.markdown-question .hljs-selector-pseudo,
.markdown-question .hljs-number {
  color: #d19a66;
}
.markdown-question .hljs-symbol,
.markdown-question .hljs-bullet,
.markdown-question .hljs-link,
.markdown-question .hljs-meta,
.markdown-question .hljs-selector-id,
.markdown-question .hljs-title {
  color: #61aeee;
}
.markdown-question .hljs-emphasis {
  font-style: italic;
}
.markdown-question .hljs-strong {
  font-weight: bold;
}
.markdown-question .hljs-link {
  text-decoration: underline;
}
.markdown-question img {
  max-width: 100%;
}

.markdown-question pre {
  color: #e1e4e8;
}

.markdown-question blockquote {
  padding: 1em 1em;
  background-color: rgba(59, 184, 175, 0.08);
}

.markdown-question blockquote > :first-child {
  margin-top: 0;
}

.markdown-question blockquote > :last-child {
  margin-bottom: 0;
}

.markdown-question blockquote {
  background-color: rgba(73, 104, 134, 0.08);
}

.markdown-question table tr:nth-child(2n) {
  background-color: rgba(24, 144, 255, 0.3);
}

.markdown-question table {
  border-spacing: 0;
  border-collapse: collapse;
}

.markdown-question th {
  background-color: rgba(73, 104, 134, 0.08);
  color: #fff;
}

.markdown-question td,
.markdown-question th {
  padding: 0;
}

.markdown-question table {
  width: 100%;
  overflow: auto;
  border: 1px solid #dee2e6;
}

.markdown-question table th {
  font-weight: 600;
}

.markdown-question table th,
.markdown-question table td {
  padding: 6px 13px;
  border: 1px solid #dee2e6;
  text-align: center;
}

.markdown-question table tr {
  background-color: rgba(73, 104, 134, 0.08);
}

.markdown-question table tr:nth-child(2n) {
  background-color: rgba(73, 104, 134, 0.08);
}

.markdown-question .katex-mathml {
  top: 0;
}

.markdown-question .hljs-quote,
.markdown-question .hljs-comment {
  color: #7d8799;
}

.v-popper__popper .v-popper__wrapper .v-popper__inner {
  padding: 8px;
  background: #000000;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  font-size: 12px;
  color: #cccccc;
}
.v-popper__popper .v-popper__wrapper .v-popper__inner div > .playback-mark-tooltip {
  width: 230px;
  background-color: #000;
}
.v-popper__popper .v-popper__wrapper .v-popper__inner div > .playback-mark-tooltip .mark-content {
  font-size: 12px;
  color: #fff;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.v-popper__popper .v-popper__wrapper .v-popper__inner div > .playback-mark-tooltip .mark-time {
  margin-top: 8px;
  color: #999;
  font-size: 12px;
}

.vjs-modal-dialog .vjs-modal-dialog-content, .video-js .vjs-modal-dialog, .vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  text-align: center;
}

@font-face {
  font-family: VideoJS;
  src: url(data:application/font-woff;charset=utf-8;base64,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) format("woff");
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play, .video-js .vjs-play-control .vjs-icon-placeholder, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-play:before, .video-js .vjs-play-control .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "\f101";
}

.vjs-icon-play-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-play-circle:before {
  content: "\f102";
}

.vjs-icon-pause, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-pause:before, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before {
  content: "\f103";
}

.vjs-icon-volume-mute, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-mute:before, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {
  content: "\f104";
}

.vjs-icon-volume-low, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-low:before, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before {
  content: "\f105";
}

.vjs-icon-volume-mid, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-mid:before, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before {
  content: "\f106";
}

.vjs-icon-volume-high, .video-js .vjs-mute-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-high:before, .video-js .vjs-mute-control .vjs-icon-placeholder:before {
  content: "\f107";
}

.vjs-icon-fullscreen-enter, .video-js .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-fullscreen-enter:before, .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f108";
}

.vjs-icon-fullscreen-exit, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-fullscreen-exit:before, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f109";
}

.vjs-icon-square {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-square:before {
  content: "\f10a";
}

.vjs-icon-spinner {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-spinner:before {
  content: "\f10b";
}

.vjs-icon-subtitles, .video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-subtitles-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-subtitles:before, .video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before {
  content: "\f10c";
}

.vjs-icon-captions, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-captions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-captions:before, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-captions-button .vjs-icon-placeholder:before {
  content: "\f10d";
}

.vjs-icon-chapters, .video-js .vjs-chapters-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-chapters:before, .video-js .vjs-chapters-button .vjs-icon-placeholder:before {
  content: "\f10e";
}

.vjs-icon-share {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-share:before {
  content: "\f10f";
}

.vjs-icon-cog {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cog:before {
  content: "\f110";
}

.vjs-icon-circle, .vjs-seek-to-live-control .vjs-icon-placeholder, .video-js .vjs-volume-level, .video-js .vjs-play-progress {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle:before, .vjs-seek-to-live-control .vjs-icon-placeholder:before, .video-js .vjs-volume-level:before, .video-js .vjs-play-progress:before {
  content: "\f111";
}

.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle-outline:before {
  content: "\f112";
}

.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle-inner-circle:before {
  content: "\f113";
}

.vjs-icon-hd {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-hd:before {
  content: "\f114";
}

.vjs-icon-cancel, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cancel:before, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before {
  content: "\f115";
}

.vjs-icon-replay, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-replay:before, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before {
  content: "\f116";
}

.vjs-icon-facebook {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-facebook:before {
  content: "\f117";
}

.vjs-icon-gplus {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-gplus:before {
  content: "\f118";
}

.vjs-icon-linkedin {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-linkedin:before {
  content: "\f119";
}

.vjs-icon-twitter {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-twitter:before {
  content: "\f11a";
}

.vjs-icon-tumblr {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-tumblr:before {
  content: "\f11b";
}

.vjs-icon-pinterest {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-pinterest:before {
  content: "\f11c";
}

.vjs-icon-audio-description, .video-js .vjs-descriptions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-audio-description:before, .video-js .vjs-descriptions-button .vjs-icon-placeholder:before {
  content: "\f11d";
}

.vjs-icon-audio, .video-js .vjs-audio-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-audio:before, .video-js .vjs-audio-button .vjs-icon-placeholder:before {
  content: "\f11e";
}

.vjs-icon-next-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-next-item:before {
  content: "\f11f";
}

.vjs-icon-previous-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-previous-item:before {
  content: "\f120";
}

.vjs-icon-picture-in-picture-enter, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-picture-in-picture-enter:before, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f121";
}

.vjs-icon-picture-in-picture-exit, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-picture-in-picture-exit:before, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f122";
}

.video-js {
  display: block;
  vertical-align: top;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  position: relative;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  word-break: initial;
}

.video-js:-moz-full-screen {
  position: absolute;
}

.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}

.video-js[tabindex="-1"] {
  outline: none;
}

.video-js *,
.video-js *:before,
.video-js *:after {
  box-sizing: inherit;
}

.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3,
.video-js.vjs-9-16,
.video-js.vjs-1-1 {
  width: 100%;
  max-width: 100%;
}

.video-js.vjs-fluid:not(.vjs-audio-only-mode),
.video-js.vjs-16-9:not(.vjs-audio-only-mode),
.video-js.vjs-4-3:not(.vjs-audio-only-mode),
.video-js.vjs-9-16:not(.vjs-audio-only-mode),
.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
  height: 0;
}

.video-js.vjs-16-9:not(.vjs-audio-only-mode) {
  padding-top: 56.25%;
}

.video-js.vjs-4-3:not(.vjs-audio-only-mode) {
  padding-top: 75%;
}

.video-js.vjs-9-16:not(.vjs-audio-only-mode) {
  padding-top: 177.7777777778%;
}

.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
  padding-top: 100%;
}

.video-js.vjs-fill:not(.vjs-audio-only-mode) {
  width: 100%;
  height: 100%;
}

.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-js.vjs-audio-only-mode .vjs-tech {
  display: none;
}

body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%;
}

.vjs-full-window .video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.video-js.vjs-fullscreen:not(.vjs-ios-native-fs) {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
}

.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}

.vjs-hidden {
  display: none !important;
}

.vjs-disabled {
  opacity: 0.5;
  cursor: default;
}

.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px;
}

.vjs-lock-showing {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.vjs-no-js {
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0px auto;
}

.vjs-no-js a,
.vjs-no-js a:visited {
  color: #66A8CC;
}

.video-js .vjs-big-play-button {
  font-size: 3em;
  line-height: 1.5em;
  height: 1.63332em;
  width: 3em;
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  border: 0.06666em solid #fff;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  border-radius: 0.3em;
  transition: all 0.4s;
}

.vjs-big-play-centered .vjs-big-play-button {
  top: 50%;
  left: 50%;
  margin-top: -0.81666em;
  margin-left: -1.5em;
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
  border-color: #fff;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
  transition: all 0s;
}

.vjs-controls-disabled .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button,
.vjs-error .vjs-big-play-button {
  display: none;
}

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
  display: block;
}

.video-js button {
  background: none;
  border: none;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
  text-decoration: none;
  transition: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.vjs-control .vjs-button {
  width: 100%;
  height: 100%;
}

.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: 0.5em;
  z-index: 2;
}

.video-js .vjs-modal-dialog {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
  overflow: auto;
}

.video-js .vjs-modal-dialog > * {
  box-sizing: border-box;
}

.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1;
}

.vjs-menu-button {
  cursor: pointer;
}

.vjs-menu-button.vjs-disabled {
  cursor: default;
}

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
  display: none;
}

.vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: auto;
}

.vjs-menu .vjs-menu-content > * {
  box-sizing: border-box;
}

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
  display: none;
}

.vjs-menu li {
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}

.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover,
.js-focus-visible .vjs-menu li.vjs-menu-item:hover {
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}

.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover,
.js-focus-visible .vjs-menu li.vjs-selected:hover {
  background-color: #fff;
  color: #2B333F;
}

.video-js .vjs-menu *:not(.vjs-selected):focus:not(:focus-visible),
.js-focus-visible .vjs-menu *:not(.vjs-selected):focus:not(.focus-visible) {
  background: none;
}

.vjs-menu li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}

.vjs-menu-button-popup .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  width: 10em;
  left: -3em;
  height: 0em;
  margin-bottom: 1.5em;
  border-top-color: rgba(43, 51, 63, 0.7);
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  max-height: 15em;
}

.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 5em;
}

.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 10em;
}

.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 14em;
}

.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 25em;
}

.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu,
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
  display: block;
}

.video-js .vjs-menu-button-inline {
  transition: all 0.4s;
  overflow: hidden;
}

.video-js .vjs-menu-button-inline:before {
  width: 2.222222222em;
}

.video-js .vjs-menu-button-inline:hover,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline.vjs-slider-active,
.video-js.vjs-no-flex .vjs-menu-button-inline {
  width: 12em;
}

.vjs-menu-button-inline .vjs-menu {
  opacity: 0;
  height: 100%;
  width: auto;
  position: absolute;
  left: 4em;
  top: 0;
  padding: 0;
  margin: 0;
  transition: all 0.4s;
}

.vjs-menu-button-inline:hover .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  display: block;
  opacity: 1;
}

.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
  display: block;
  opacity: 1;
  position: relative;
  width: auto;
}

.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  width: auto;
}

.vjs-menu-button-inline .vjs-menu-content {
  width: auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.video-js .vjs-control-bar {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}

.vjs-has-started .vjs-control-bar,
.vjs-audio-only-mode .vjs-control-bar {
  display: flex;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.1s, opacity 0.1s;
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  visibility: visible;
  opacity: 0;
  pointer-events: none;
  transition: visibility 1s, opacity 1s;
}

.vjs-controls-disabled .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar,
.vjs-error .vjs-control-bar {
  display: none !important;
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar,
.vjs-audio-only-mode.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vjs-has-started.vjs-no-flex .vjs-control-bar {
  display: table;
}

.video-js .vjs-control {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 4em;
  flex: none;
}

.video-js .vjs-control.vjs-visible-text {
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-button > .vjs-icon-placeholder:before {
  font-size: 1.8em;
  line-height: 1.67;
}

.vjs-button > .vjs-icon-placeholder {
  display: block;
}

.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before,
.video-js .vjs-control:focus {
  text-shadow: 0em 0em 1em white;
}

.video-js *:not(.vjs-visible-text) > .vjs-control-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.vjs-no-flex .vjs-control {
  display: table-cell;
  vertical-align: middle;
}

.video-js .vjs-custom-control-spacer {
  display: none;
}

.video-js .vjs-progress-control {
  cursor: pointer;
  flex: auto;
  display: flex;
  align-items: center;
  min-width: 4em;
  touch-action: none;
}

.video-js .vjs-progress-control.disabled {
  cursor: default;
}

.vjs-live .vjs-progress-control {
  display: none;
}

.vjs-liveui .vjs-progress-control {
  display: flex;
  align-items: center;
}

.vjs-no-flex .vjs-progress-control {
  width: auto;
}

.video-js .vjs-progress-holder {
  flex: auto;
  transition: all 0.2s;
  height: 0.3em;
}

.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 0 10px;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder {
  font-size: 1.6666666667em;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
  font-size: 1em;
}

.video-js .vjs-progress-holder .vjs-play-progress,
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 0;
}

.video-js .vjs-play-progress {
  background-color: #fff;
}

.video-js .vjs-play-progress:before {
  font-size: 0.9em;
  position: absolute;
  right: -0.5em;
  top: -0.3333333333em;
  z-index: 1;
}

.video-js .vjs-load-progress {
  background: rgba(115, 133, 159, 0.5);
}

.video-js .vjs-load-progress div {
  background: rgba(115, 133, 159, 0.75);
}

.video-js .vjs-time-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
  display: none;
}

.video-js .vjs-progress-control:hover .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip {
  display: block;
  font-size: 0.6em;
  visibility: visible;
}

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
  font-size: 1em;
}

.video-js .vjs-progress-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  z-index: 1;
}

.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  z-index: 0;
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  display: none;
}

.vjs-mouse-display .vjs-time-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.video-js .vjs-slider {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 0.45em 0 0.45em;
  /* iOS Safari */
  -webkit-touch-callout: none;
  /* Safari */
  -webkit-user-select: none;
  /* Konqueror HTML */
  /* Firefox */
  -moz-user-select: none;
  /* Internet Explorer/Edge */
  -ms-user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
  user-select: none;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}

.video-js .vjs-slider.disabled {
  cursor: default;
}

.video-js .vjs-slider:focus {
  text-shadow: 0em 0em 1em white;
  box-shadow: 0 0 1em #fff;
}

.video-js .vjs-mute-control {
  cursor: pointer;
  flex: none;
}

.video-js .vjs-volume-control {
  cursor: pointer;
  margin-right: 1em;
  display: flex;
}

.video-js .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
}

.video-js .vjs-volume-panel .vjs-volume-control {
  visibility: visible;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin-left: -1px;
}

.video-js .vjs-volume-panel {
  transition: width 1s;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control, .video-js .vjs-volume-panel:active .vjs-volume-control, .video-js .vjs-volume-panel:focus .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control:active, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active {
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  margin-right: 0;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical {
  left: -3.5em;
  transition: left 0s;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
  width: 10em;
  transition: width 0.1s;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
  width: 4em;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  height: 8em;
  width: 3em;
  left: -3000em;
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;
}

.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: none;
}

.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  position: absolute;
  bottom: 3em;
  left: 0.5em;
}

.video-js .vjs-volume-panel {
  display: flex;
}

.video-js .vjs-volume-bar {
  margin: 1.35em 0.45em;
}

.vjs-volume-bar.vjs-slider-horizontal {
  width: 5em;
  height: 0.3em;
}

.vjs-volume-bar.vjs-slider-vertical {
  width: 0.3em;
  height: 5em;
  margin: 1.35em auto;
}

.video-js .vjs-volume-level {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
}

.video-js .vjs-volume-level:before {
  position: absolute;
  font-size: 0.9em;
  z-index: 1;
}

.vjs-slider-vertical .vjs-volume-level {
  width: 0.3em;
}

.vjs-slider-vertical .vjs-volume-level:before {
  top: -0.5em;
  left: -0.3em;
  z-index: 1;
}

.vjs-slider-horizontal .vjs-volume-level {
  height: 0.3em;
}

.vjs-slider-horizontal .vjs-volume-level:before {
  top: -0.3em;
  right: -0.5em;
}

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
  width: 4em;
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%;
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%;
}

.video-js .vjs-volume-vertical {
  width: 3em;
  height: 8em;
  bottom: 8em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}

.video-js .vjs-volume-horizontal .vjs-menu {
  left: -2em;
}

.video-js .vjs-volume-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-volume-control:hover .vjs-volume-tooltip,
.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
  display: block;
  font-size: 1em;
  visibility: visible;
}

.video-js .vjs-volume-vertical:hover .vjs-volume-tooltip,
.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
  left: 1em;
  top: -12px;
}

.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip {
  font-size: 1em;
}

.video-js .vjs-volume-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  z-index: 1;
}

.video-js .vjs-volume-horizontal .vjs-mouse-display {
  width: 1px;
  height: 100%;
}

.vjs-no-flex .vjs-volume-control .vjs-mouse-display {
  z-index: 0;
}

.video-js .vjs-volume-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-volume-control .vjs-mouse-display {
  display: none;
}

.vjs-mouse-display .vjs-volume-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.vjs-poster {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-color: #000000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}

.vjs-has-started .vjs-poster,
.vjs-using-native-controls .vjs-poster {
  display: none;
}

.vjs-audio.vjs-has-started .vjs-poster,
.vjs-has-started.vjs-audio-poster-mode .vjs-poster {
  display: block;
}

.video-js .vjs-live-control {
  display: flex;
  align-items: flex-start;
  flex: auto;
  font-size: 1em;
  line-height: 3em;
}

.vjs-no-flex .vjs-live-control {
  display: table-cell;
  width: auto;
  text-align: left;
}

.video-js:not(.vjs-live) .vjs-live-control,
.video-js.vjs-liveui .vjs-live-control {
  display: none;
}

.video-js .vjs-seek-to-live-control {
  align-items: center;
  cursor: pointer;
  flex: none;
  display: inline-flex;
  height: 100%;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 1em;
  line-height: 3em;
  width: auto;
  min-width: 4em;
}

.vjs-no-flex .vjs-seek-to-live-control {
  display: table-cell;
  width: auto;
  text-align: left;
}

.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
  display: none;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
  cursor: auto;
}

.vjs-seek-to-live-control .vjs-icon-placeholder {
  margin-right: 0.5em;
  color: #888;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
  color: red;
}

.video-js .vjs-time-control {
  flex: none;
  font-size: 1em;
  line-height: 3em;
  min-width: 2em;
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-live .vjs-time-control {
  display: none;
}

.video-js .vjs-current-time,
.vjs-no-flex .vjs-current-time {
  display: none;
}

.video-js .vjs-duration,
.vjs-no-flex .vjs-duration {
  display: none;
}

.vjs-time-divider {
  display: none;
  line-height: 3em;
}

.vjs-live .vjs-time-divider {
  display: none;
}

.video-js .vjs-play-control {
  cursor: pointer;
}

.video-js .vjs-play-control .vjs-icon-placeholder {
  flex: none;
}

.vjs-text-track-display {
  position: absolute;
  bottom: 3em;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}

.video-js.vjs-controls-disabled .vjs-text-track-display,
.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}

.video-js .vjs-text-track {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em;
}

.vjs-subtitles {
  color: #fff;
}

.vjs-captions {
  color: #fc6;
}

.vjs-tt-cue {
  display: block;
}

video::-webkit-media-text-track-display {
  transform: translateY(-3em);
}

.video-js.vjs-controls-disabled video::-webkit-media-text-track-display,
.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
  transform: translateY(-1.5em);
}

.video-js .vjs-picture-in-picture-control {
  cursor: pointer;
  flex: none;
}

.video-js.vjs-audio-only-mode .vjs-picture-in-picture-control {
  display: none;
}

.video-js .vjs-fullscreen-control {
  cursor: pointer;
  flex: none;
}

.video-js.vjs-audio-only-mode .vjs-fullscreen-control {
  display: none;
}

.vjs-playback-rate > .vjs-menu-button,
.vjs-playback-rate .vjs-playback-rate-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-playback-rate .vjs-playback-rate-value {
  pointer-events: none;
  font-size: 1.5em;
  line-height: 2;
  text-align: center;
}

.vjs-playback-rate .vjs-menu {
  width: 4em;
  left: 0em;
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center;
}

.vjs-error .vjs-error-display:before {
  color: #fff;
  content: "X";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4em;
  left: 0;
  line-height: 1;
  margin-top: -0.5em;
  position: absolute;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center;
  top: 50%;
  vertical-align: middle;
  width: 100%;
}

.vjs-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.85;
  text-align: left;
  border: 6px solid rgba(43, 51, 63, 0.7);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  visibility: hidden;
}

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
  display: block;
  -webkit-animation: vjs-spinner-show 0s linear 0.3s forwards;
  animation: vjs-spinner-show 0s linear 0.3s forwards;
}

.vjs-loading-spinner:before,
.vjs-loading-spinner:after {
  content: "";
  position: absolute;
  margin: -6px;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after {
  -webkit-animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
  border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
  border-top-color: white;
  -webkit-animation-delay: 0.44s;
  animation-delay: 0.44s;
}

@keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}
@-webkit-keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}
@keyframes vjs-spinner-spin {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes vjs-spinner-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f;
  }
  20% {
    border-top-color: #73859f;
  }
  35% {
    border-top-color: white;
  }
  60% {
    border-top-color: #73859f;
  }
  100% {
    border-top-color: #73859f;
  }
}
@-webkit-keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f;
  }
  20% {
    border-top-color: #73859f;
  }
  35% {
    border-top-color: white;
  }
  60% {
    border-top-color: #73859f;
  }
  100% {
    border-top-color: #73859f;
  }
}
.video-js.vjs-audio-only-mode .vjs-captions-button {
  display: none;
}

.vjs-chapters-button .vjs-menu ul {
  width: 24em;
}

.video-js.vjs-audio-only-mode .vjs-descriptions-button {
  display: none;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: "\f10d";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-audio-only-mode .vjs-subs-caps-button {
  display: none;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: " \f11d";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-layout-small .vjs-current-time,
.video-js.vjs-layout-small .vjs-time-divider,
.video-js.vjs-layout-small .vjs-duration,
.video-js.vjs-layout-small .vjs-remaining-time,
.video-js.vjs-layout-small .vjs-playback-rate,
.video-js.vjs-layout-small .vjs-volume-control, .video-js.vjs-layout-x-small .vjs-current-time,
.video-js.vjs-layout-x-small .vjs-time-divider,
.video-js.vjs-layout-x-small .vjs-duration,
.video-js.vjs-layout-x-small .vjs-remaining-time,
.video-js.vjs-layout-x-small .vjs-playback-rate,
.video-js.vjs-layout-x-small .vjs-volume-control, .video-js.vjs-layout-tiny .vjs-current-time,
.video-js.vjs-layout-tiny .vjs-time-divider,
.video-js.vjs-layout-tiny .vjs-duration,
.video-js.vjs-layout-tiny .vjs-remaining-time,
.video-js.vjs-layout-tiny .vjs-playback-rate,
.video-js.vjs-layout-tiny .vjs-volume-control {
  display: none;
}

.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover {
  width: auto;
  width: initial;
}

.video-js.vjs-layout-x-small .vjs-progress-control, .video-js.vjs-layout-tiny .vjs-progress-control {
  display: none;
}

.video-js.vjs-layout-x-small .vjs-custom-control-spacer {
  flex: auto;
  display: block;
}

.video-js.vjs-layout-x-small.vjs-no-flex .vjs-custom-control-spacer {
  width: auto;
}

.vjs-modal-dialog.vjs-text-track-settings {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.75);
  color: #fff;
  height: 70%;
}

.vjs-text-track-settings .vjs-modal-dialog-content {
  display: table;
}

.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-font,
.vjs-text-track-settings .vjs-track-settings-controls {
  display: table-cell;
}

.vjs-text-track-settings .vjs-track-settings-controls {
  text-align: right;
  vertical-align: bottom;
}

@supports (display: grid) {
  .vjs-text-track-settings .vjs-modal-dialog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding: 20px 24px 0px 24px;
  }
  .vjs-track-settings-controls .vjs-default-button {
    margin-bottom: 20px;
  }
  .vjs-text-track-settings .vjs-track-settings-controls {
    grid-column: 1/-1;
  }
  .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content {
    grid-template-columns: 1fr;
  }
}
.vjs-track-setting > select {
  margin-right: 1em;
  margin-bottom: 0.5em;
}

.vjs-text-track-settings fieldset {
  margin: 5px;
  padding: 3px;
  border: none;
}

.vjs-text-track-settings fieldset span {
  display: inline-block;
}

.vjs-text-track-settings fieldset span > select {
  max-width: 7.3em;
}

.vjs-text-track-settings legend {
  color: #fff;
  margin: 0 0 5px 0;
}

.vjs-text-track-settings .vjs-label {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  display: block;
  margin: 0 0 5px 0;
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.vjs-track-settings-controls button:focus,
.vjs-track-settings-controls button:active {
  outline-style: solid;
  outline-width: medium;
  background-image: linear-gradient(0deg, #fff 88%, #73859f 100%);
}

.vjs-track-settings-controls button:hover {
  color: rgba(43, 51, 63, 0.75);
}

.vjs-track-settings-controls button {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff 88%, #73859f 100%);
  color: #2B333F;
  cursor: pointer;
  border-radius: 2px;
}

.vjs-track-settings-controls .vjs-default-button {
  margin-right: 1em;
}

@media print {
  .video-js > *:not(.vjs-tech):not(.vjs-poster) {
    visibility: hidden;
  }
}
.vjs-resize-manager {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1000;
}

.js-focus-visible .video-js *:focus:not(.focus-visible) {
  outline: none;
}

.video-js *:focus:not(:focus-visible) {
  outline: none;
}

.paas-pad-interviewer-pads-edit-page {
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/paas-pad/invite-background-496950f09f9116c49e5e6dbc3d38ac2890780f5be2a723f9f3ce49c820b9281d.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100vh;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads {
  height: 100%;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads .pads-wrap {
  width: 100%;
  overflow-y: auto;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads .pads-wrap .pads-content {
  min-height: 100%;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads-box {
  width: 445px;
  background: #2e3033;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .paas-pad-interviewer-pads-edit-page .interviewer-pads-box {
    width: calc(100vw - 12px);
  }
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads .smb-dropdown .dropdown-menu {
  margin-top: 4px;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads-header img.inviter-avatar {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  object-fit: cover;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads-header .creator-name {
  font-size: 16px;
  color: #fff;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads-header .smb-dropdown-btn-icon {
  color: #fff;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads-header-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads-header-perform-desc {
  color: #999;
  font-size: 12px;
  max-width: 300px;
  margin: 0 auto;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads-header-helps {
  background: rgba(64, 140, 255, 0.05);
  border: 1px solid rgba(64, 140, 255, 0.2);
  border-radius: 8px;
  padding: 12px;
  margin: 0 40px;
  justify-content: space-around;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads-header-helps .smb-link, .paas-pad-interviewer-pads-edit-page .interviewer-pads-header-helps .paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .el-button, .paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .paas-pad-interviewer-pads-edit-page .interviewer-pads-header-helps .el-button {
  font-size: 12px;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads-header-helps .actions-separator {
  width: 12px;
  height: 0px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads-body form {
  margin: 20px 40px 0;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads-body form .form-group {
  margin-bottom: 20px;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads-body form .form-group label {
  color: #ccc;
  font-size: 14px;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads-body form .form-group .form-control {
  padding: 10px 12px;
  background: #222426;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: #fff;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads-body form .form-group .form-control::placeholder {
  color: #999;
  font-size: 14px;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads-body form.new_auth_pad_join_team_form {
  margin-bottom: 0;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads-body form.new_auth_pad_join_team_form .team-user-limit {
  font-size: 12px;
}
.paas-pad-interviewer-pads-edit-page .interviewer-pads .subtitle-link {
  font-size: 14px;
  color: #999;
  margin-top: 8px;
}

.paas-pads-show-page {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #222426;
  transition: height 0.3s ease-in-out;
  color: #fff;
  /* 笔试板题目样式 */
}
.paas-pads-show-page .el-input:not(.white-theme__input) .el-input__inner {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  background-color: #222426;
  padding-left: 12px;
}
.paas-pads-show-page .el-input:not(.white-theme__input) .el-input__inner:focus, .paas-pads-show-page .el-input:not(.white-theme__input) .el-input__inner:not(:disabled):hover {
  border-color: #408cff;
}
.paas-pads-show-page .el-input:not(.white-theme__input) .el-input__inner::placeholder {
  color: #999;
}
.paas-pads-show-page .el-input:not(.white-theme__input) .el-input__suffix {
  right: 12px;
}
.paas-pads-show-page .el-input:not(.white-theme__input).is-focus .el-input__inner {
  border-color: #408cff;
}
.paas-pads-show-page .el-textarea:not(.white-theme__textarea) .el-textarea__inner {
  border-color: rgba(255, 255, 255, 0.1);
  padding: 12px;
  color: #fff;
  border-radius: 8px;
  background-color: #222426;
}
.paas-pads-show-page .el-textarea:not(.white-theme__textarea) .el-textarea__inner:focus {
  border-color: #408cff;
}
.paas-pads-show-page .el-textarea:not(.white-theme__textarea):not(.is-disabled) .el-textarea__inner:hover {
  border-color: #408cff;
}
.paas-pads-show-page .el-radio__input .el-radio__inner {
  background-color: unset;
}
.paas-pads-show-page .el-radio__input.is-checked .el-radio__inner {
  background-color: #408cff;
  border-color: #408cff;
}
.paas-pads-show-page .el-radio__input.is-checked + .el-radio__label {
  color: #408cff;
}
.paas-pads-show-page .el-radio__label {
  font-weight: 400;
}
.paas-pads-show-page .el-checkbox .el-checkbox__input .el-checkbox__inner {
  background-color: rgba(0, 0, 0, 0);
  border-color: #999;
}
.paas-pads-show-page .el-checkbox .el-checkbox__input.is-checked .el-checkbox__inner {
  background-color: #408cff;
  border-color: #408cff;
}
.paas-pads-show-page .el-checkbox .el-checkbox__input.is-disabled .el-checkbox__inner {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #4d4d4d;
}
.paas-pads-show-page .el-checkbox .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner {
  background-color: #4d4d4d;
  border-color: #4d4d4d;
}
.paas-pads-show-page .el-checkbox .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after {
  color: #999;
}
.paas-pads-show-page .el-switch__core {
  background-color: #2e3033;
  border-color: #ccc;
  height: 16px;
}
.paas-pads-show-page .el-switch__core::after {
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
}
.paas-pads-show-page .el-switch.is-checked .el-switch__core {
  background-color: #408cff;
  border-color: #408cff;
}
.paas-pads-show-page .el-switch.is-checked .el-switch__core::after {
  margin-left: -11px;
}
.paas-pads-show-page .el-form .el-form-item {
  margin-bottom: 8px;
}
.paas-pads-show-page .el-form .el-form-item__label {
  padding: 0;
  margin-bottom: 0;
  color: #ccc;
}
.paas-pads-show-page .el-form .el-form-item__error {
  color: #d9574c;
  padding-top: 8px;
}
.paas-pads-show-page .el-form .el-form-item.is-error {
  margin-bottom: 20px;
}
.paas-pads-show-page .el-form .el-form-item.is-error .el-input .el-input__inner {
  border-color: #d9574c;
}
.paas-pads-show-page .el-form .el-form-item.is-error .el-input .el-input__inner:not(:disabled):hover, .paas-pads-show-page .el-form .el-form-item.is-error .el-input .el-input__inner:focus {
  border-color: #d9574c;
}
.paas-pads-show-page form.el-form.white-theme .el-form-item label.el-form-item__label {
  display: flex;
  align-items: center;
  color: #333;
  font-size: 14px;
  font-weight: 400;
}
.paas-pads-show-page form.el-form.white-theme .el-form-item.is-required label.el-form-item__label::before {
  color: #d9574c;
}
.paas-pads-show-page form.el-form.white-theme .el-form-item.is-error .el-form-item__content .el-input input {
  border-color: #d9574c;
}
.paas-pads-show-page form.el-form.white-theme .el-form-item.is-error .el-form-item__content .el-form-item__error {
  color: #d9574c;
}
.paas-pads-show-page form.el-form.white-theme .el-form-item.select .el-form-item__content .el-select.white-theme__select .el-input.el-input--suffix .el-input__inner {
  background-color: #fff;
  border-color: #dcdfe6;
  color: #333;
}
.paas-pads-show-page form.el-form.white-theme .grid-2 {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, calc(50% - 6px));
}
.paas-pads-show-page form.el-form.white-theme .grid-2 .el-form-item.is-error .el-form-item__content .el-form-item__error {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}
.paas-pads-show-page form.el-form.white-theme .el-upload .el-upload-dragger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px dashed #dcdfe6;
  background: #f7f8fa;
}
.paas-pads-show-page form.el-form.white-theme .el-upload .el-upload-dragger .el-upload__text {
  color: #606266;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.paas-pads-show-page form.el-form.white-theme .el-upload .el-upload-dragger .el-upload__text span.action {
  margin: 0 4px;
  color: #409eff;
}
.paas-pads-show-page form.el-form.white-theme .el-upload__tip {
  line-height: 1.5;
  text-align: center;
  color: #999;
  font-size: 12px;
  font-weight: 400;
}
.paas-pads-show-page form#agreement.el-form.white-theme .el-form-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.paas-pads-show-page form#agreement.el-form.white-theme .el-form-item .el-form-item__content .el-form-item__error {
  position: unset;
  width: inherit;
  text-align: center;
}
.paas-pads-show-page .el-select {
  width: 100%;
}
.paas-pads-show-page .el-select .el-input:not(.white-theme__input) .el-input__inner {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  background-color: #222426;
  padding-left: 12px;
}
.paas-pads-show-page .el-select .el-input:not(.white-theme__input) .el-input__inner:focus, .paas-pads-show-page .el-select .el-input:not(.white-theme__input) .el-input__inner:not(:disabled):hover {
  border-color: #408cff;
}
.paas-pads-show-page .el-select .el-input:not(.white-theme__input) .el-input__inner::placeholder {
  color: #999;
}
.paas-pads-show-page .el-select .el-input:not(.white-theme__input) .el-input__suffix {
  right: 12px;
}
.paas-pads-show-page .el-select .el-input:not(.white-theme__input).is-focus .el-input__inner {
  border-color: #408cff;
}
.paas-pads-show-page .el-select:hover .el-input__inner {
  border-color: #408cff;
}
.paas-pads-show-page .el-select .el-input.is-disabled .el-input__inner {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #999;
}
.paas-pads-show-page .el-select .el-input.is-disabled .el-input__inner:hover {
  border-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .el-select .el-input .el-select__caret {
  font-size: 12px;
  color: #ccc;
  transform: rotateZ(90deg);
}
.paas-pads-show-page .el-select .el-input .el-select__caret.is-reverse {
  transform: rotateZ(180deg);
}
.paas-pads-show-page .el-select .el-select__tags .el-tag {
  max-width: 96%;
}
.paas-pads-show-page .el-select .el-select__tags .el-tag--info .el-tag__close {
  font-size: 14px;
  font-weight: 600;
}
.paas-pads-show-page .el-select:not(.white-theme__select) .el-select__tags .el-tag--info {
  border: unset;
  color: #fff;
  background-color: #3a3c40;
}
.paas-pads-show-page .el-select:not(.white-theme__select) .el-select__tags .el-tag--info .el-tag__close {
  color: #666;
  background-color: transparent;
}
.paas-pads-show-page .el-select:not(.white-theme__select) .el-select__tags .el-tag--info:hover {
  background-color: #408cff;
}
.paas-pads-show-page .el-select:not(.white-theme__select) .el-select__tags .el-tag--info:hover .el-tag__close {
  color: #fff;
  background-color: transparent;
}
.paas-pads-show-page .el-select-dropdown {
  margin-top: 4px;
}
.paas-pads-show-page .el-select-dropdown > .popper__arrow {
  display: none;
}
.paas-pads-show-page .el-select-dropdown .el-select-dropdown__list {
  padding: 4px;
}
.paas-pads-show-page .el-select-dropdown .el-select-dropdown__list .el-select-dropdown__item {
  padding: 0 8px;
}
.paas-pads-show-page .el-select-dropdown .el-select-dropdown__list .el-select-dropdown__item.hover, .paas-pads-show-page .el-select-dropdown .el-select-dropdown__list .el-select-dropdown__item:hover {
  border-radius: 4px;
}
.paas-pads-show-page .el-select-dropdown .el-select-dropdown__list .el-select-dropdown__item.selected {
  padding-left: 20px;
  position: relative;
  color: #408cff;
  font-weight: 400;
}
.paas-pads-show-page .el-select-dropdown .el-select-dropdown__list .el-select-dropdown__item.selected:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: calc(50% - 2px);
  left: 8px;
  background: #408cff;
}
.paas-pads-show-page .el-select-dropdown.is-multiple .el-select-dropdown__item {
  background-color: unset !important;
}
.paas-pads-show-page .el-select-dropdown.is-multiple .el-select-dropdown__item::after {
  display: none;
}
.paas-pads-show-page .el-select-dropdown.is-multiple .el-select-dropdown__item.hover, .paas-pads-show-page .el-select-dropdown.is-multiple .el-select-dropdown__item:hover, .paas-pads-show-page .el-select-dropdown.is-multiple .el-select-dropdown__item.selected:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 4px;
}
.paas-pads-show-page .el-select-dropdown.is-multiple .el-select-dropdown__item.selected {
  background: transparent !important;
}
.paas-pads-show-page .el-select-dropdown:not(.white-theme) {
  background-color: #3a3c40;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.3);
}
.paas-pads-show-page .el-select-dropdown:not(.white-theme) .el-select-dropdown__list .el-select-dropdown__item {
  color: #ccc;
}
.paas-pads-show-page .el-select-dropdown:not(.white-theme) .el-select-dropdown__list .el-select-dropdown__item.hover, .paas-pads-show-page .el-select-dropdown:not(.white-theme) .el-select-dropdown__list .el-select-dropdown__item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .el-select-dropdown:not(.white-theme).is-multiple .el-select-dropdown__item {
  background-color: unset !important;
}
.paas-pads-show-page .el-select-dropdown:not(.white-theme).is-multiple .el-select-dropdown__item.hover, .paas-pads-show-page .el-select-dropdown:not(.white-theme).is-multiple .el-select-dropdown__item:hover, .paas-pads-show-page .el-select-dropdown:not(.white-theme).is-multiple .el-select-dropdown__item.selected:hover {
  background: rgba(255, 255, 255, 0.05) !important;
}
.paas-pads-show-page .el-select-dropdown:not(.white-theme).is-multiple .el-select-dropdown__item.selected {
  background: transparent !important;
}
.paas-pads-show-page .el-dropdown:not(.white-theme) i.el-icon-arrow-down::before {
  content: "\e790";
}
.paas-pads-show-page .el-dropdown:not(.white-theme).icon-default-up i.el-icon-arrow-down::before {
  content: "\e78f";
}
.paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group button {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 12px;
  font-weight: 400;
}
.paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group button:disabled, .paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group button:disabled:hover {
  background-color: #2e3033;
  color: #666;
}
.paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group button:first-child {
  border-color: rgba(255, 255, 255, 0.1);
  border-right-color: transparent;
}
.paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group button:first-child:not(:disabled):hover {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group button:last-child {
  border-color: rgba(255, 255, 255, 0.1);
  border-left-color: transparent;
}
.paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group button:last-child:not(:disabled):hover {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group button:before {
  top: 0;
  bottom: 0;
  left: -1px;
  background: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group button:hover:before {
  width: 0;
}
.paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group button:focus, .paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group button:active {
  outline: none;
}
.paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group .el-dropdown__caret-button {
  padding: 8px;
}
.paas-pads-show-page .el-dropdown-menu:not(.white-theme) {
  background: #3a3c40;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.3);
}
.paas-pads-show-page .el-dropdown-menu:not(.white-theme) .el-dropdown-menu__item {
  color: #ccc;
  padding: 0 8px;
}
.paas-pads-show-page .el-dropdown-menu:not(.white-theme) .el-dropdown-menu__item--divided {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .el-dropdown-menu:not(.white-theme) .el-dropdown-menu__item:hover, .paas-pads-show-page .el-dropdown-menu:not(.white-theme) .el-dropdown-menu__item:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #ccc;
}
.paas-pads-show-page .el-dropdown-menu:not(.white-theme) .el-dropdown-menu__item.selected {
  color: #408cff;
  position: relative;
  padding-left: 20px;
}
.paas-pads-show-page .el-dropdown-menu:not(.white-theme) .el-dropdown-menu__item.selected:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #408cff;
}
.paas-pads-show-page .el-dropdown-menu:not(.white-theme) .el-dropdown-menu__item.selected:before {
  content: "";
  position: absolute;
  left: 8px;
  top: calc(50% - 2px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #408cff;
}
.paas-pads-show-page .el-dropdown-menu:not(.white-theme).el-popper[x-placement^=right] {
  margin-left: -1px;
}
.paas-pads-show-page .el-dropdown-menu:not(.white-theme) > .popper__arrow {
  display: none;
}
.paas-pads-show-page .el-dialog__wrapper {
  -webkit-overflow-scrolling: auto;
}
.paas-pads-show-page .el-dialog__wrapper::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
  cursor: pointer;
}
.paas-pads-show-page .el-dialog__wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .el-dialog__wrapper::-webkit-scrollbar-thumb:vertical {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .el-dialog__wrapper::-webkit-scrollbar-thumb:vertical:active {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .el-dialog__wrapper::-webkit-scrollbar-corner {
  background-color: transparent;
}
.paas-pads-show-page .el-dialog__wrapper::-webkit-scrollbar-thumb:horizontal {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .el-dialog__wrapper::-webkit-scrollbar-thumb:horizontal:active {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .el-dialog__wrapper .el-dialog:not(.white-theme__dialog) {
  background-color: #3a3c40;
  border: none;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}
.paas-pads-show-page .el-dialog__wrapper .el-dialog:not(.white-theme__dialog).dialog-centered {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto !important;
  height: fit-content;
}
.paas-pads-show-page .el-dialog__wrapper .el-dialog:not(.white-theme__dialog) .el-dialog__header {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .el-dialog__wrapper .el-dialog:not(.white-theme__dialog) .el-dialog__header .el-dialog__title {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.paas-pads-show-page .el-dialog__wrapper .el-dialog:not(.white-theme__dialog) .el-dialog__header .el-dialog__headerbtn {
  top: 12px;
  outline: none;
}
.paas-pads-show-page .el-dialog__wrapper .el-dialog:not(.white-theme__dialog) .el-dialog__header .el-dialog__headerbtn i.el-dialog__close {
  font-size: 20px;
  font-weight: bold;
}
.paas-pads-show-page .el-dialog__wrapper .el-dialog:not(.white-theme__dialog) .el-dialog__header .el-dialog__headerbtn:hover i.el-dialog__close {
  color: #fff;
}
.paas-pads-show-page .el-dialog__wrapper .el-dialog:not(.white-theme__dialog) .el-dialog__body {
  padding: 20px;
  color: #fff;
}
.paas-pads-show-page .el-dialog__wrapper .el-dialog:not(.white-theme__dialog) .el-dialog__footer {
  padding: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .el-dialog__wrapper .el-dialog:not(.white-theme__dialog).footer-border-none > .el-dialog__footer {
  padding: 0 20px 20px;
  border-top: unset;
}
.paas-pads-show-page .el-dialog__wrapper .el-dialog:not(.white-theme__dialog).footer-border-none > .el-dialog__footer > button:not(:first-child) {
  margin-left: 12px;
}
@media (max-width: 576px) {
  .paas-pads-show-page .el-dialog__wrapper .el-dialog:not(.white-theme__dialog) {
    width: 343px !important;
  }
}
.paas-pads-show-page .el-collapse {
  border: unset;
}
.paas-pads-show-page .el-collapse .el-collapse-item__header {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 12px;
  color: #fff;
  border: none;
}
.paas-pads-show-page .el-collapse .el-collapse-item__header .el-collapse-item__arrow {
  margin: 0 0 0 auto;
  font-family: "smb-icon" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.paas-pads-show-page .el-collapse .el-collapse-item__header .el-collapse-item__arrow::before {
  content: "\e6fe";
}
.paas-pads-show-page .el-collapse .el-collapse-item__header:hover, .paas-pads-show-page .el-collapse .el-collapse-item__header.is-active {
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .el-collapse .el-collapse-item__header.is-active {
  border-radius: 4px 4px 0 0;
  position: relative;
}
.paas-pads-show-page .el-collapse .el-collapse-item__header.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: display 0.1s ease-in-out;
}
.paas-pads-show-page .el-collapse .el-collapse-item__wrap {
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0;
}
.paas-pads-show-page .el-collapse .el-collapse-item__wrap .el-collapse-item__content {
  padding: 12px;
  color: #fff;
}
.paas-pads-show-page .el-tabs.smb-button-tabs .el-tabs__header {
  margin: 0 0 16px;
  padding: 8px 0 0;
  background-color: #2e3033;
}
.paas-pads-show-page .el-tabs.smb-button-tabs .el-tabs__header .el-tabs__nav-wrap .el-tabs__nav-scroll .el-tabs__nav .el-tabs__item {
  height: 28px;
  line-height: 28px;
  border: none;
  outline: unset;
  box-shadow: unset;
  text-align: center;
  padding: 0 16px;
  margin-right: 8px;
  border-radius: 4px;
  color: #999;
  font-size: 14px;
}
.paas-pads-show-page .el-tabs.smb-button-tabs .el-tabs__header .el-tabs__nav-wrap .el-tabs__nav-scroll .el-tabs__nav .el-tabs__item:not(.is-active):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  outline: unset;
}
.paas-pads-show-page .el-tabs.smb-button-tabs .el-tabs__header .el-tabs__nav-wrap .el-tabs__nav-scroll .el-tabs__nav .el-tabs__item.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  outline: unset;
}
.paas-pads-show-page .el-tabs.smb-button-tabs .el-tabs__header .el-tabs__nav-wrap .el-tabs__nav-scroll .el-tabs__nav .el-tabs__active-bar {
  display: none;
}
.paas-pads-show-page .el-tabs.smb-button-tabs .el-tabs__header .el-tabs__nav-wrap::after {
  display: none;
}
.paas-pads-show-page .el-drawer {
  background-color: #3a3c40;
}
.paas-pads-show-page .el-drawer__header {
  height: 60px;
  margin: unset;
  padding: 0 20px;
  position: relative;
  color: #fff;
}
.paas-pads-show-page .el-drawer__header span {
  outline: unset !important;
}
.paas-pads-show-page .el-drawer__header:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .el-drawer__header .el-drawer__close-btn {
  outline: none;
}
.paas-pads-show-page .el-drawer__header .el-drawer__close-btn > i {
  color: #ccc;
}
.paas-pads-show-page .el-drawer__header .el-drawer__close-btn:hover i {
  color: #fff;
}
.paas-pads-show-page .el-drawer__body {
  padding: 20px;
}
.paas-pads-show-page .el-icon-loading {
  width: 20px;
  height: 20px;
  font-family: unset;
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/smb-loading-d1be4817a33bee1fdc9749a9303486b64e8b6ba3358f2f2960617517b2413773.svg);
}
.paas-pads-show-page .el-icon-loading::before {
  content: "";
}
.paas-pads-show-page .el-cascader__dropdown {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.3);
  background-color: #3a3c40;
}
.paas-pads-show-page .el-cascader__dropdown .el-cascader-panel .el-cascader-menu:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .el-cascader__dropdown .el-cascader-panel .el-cascader-menu .el-cascader-menu__wrap .el-cascader-menu__list .el-cascader-node {
  color: #ccc;
}
.paas-pads-show-page .el-cascader__dropdown .el-cascader-panel .el-cascader-menu .el-cascader-menu__wrap .el-cascader-menu__list .el-cascader-node.in-active-path, .paas-pads-show-page .el-cascader__dropdown .el-cascader-panel .el-cascader-menu .el-cascader-menu__wrap .el-cascader-menu__list .el-cascader-node.is-active {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.paas-pads-show-page .el-cascader__dropdown .el-cascader-panel .el-cascader-menu .el-cascader-menu__wrap .el-cascader-menu__list .el-cascader-node.is-active > .el-cascader-node__prefix::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #408cff;
  display: block;
}
.paas-pads-show-page .el-cascader__dropdown .el-cascader-panel .el-cascader-menu .el-cascader-menu__wrap .el-cascader-menu__list .el-cascader-node:not(.in-active-path):not(.is-active):hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.paas-pads-show-page .el-cascader__dropdown .popper__arrow {
  display: none;
}
.paas-pads-show-page .el-cascader__dropdown.el-popper[x-placement^=bottom] {
  margin-top: 4px;
}
.paas-pads-show-page .el-button:focus {
  outline: none;
}
.paas-pads-show-page .el-button.el-button--smb-blue {
  padding: 8px 16px;
  line-height: normal;
}
.paas-pads-show-page .el-button.el-button--smb-blue:not(.is-loading):not(.is-disabled) {
  background: #408cff;
  color: #ffffff;
}
.paas-pads-show-page .el-button.el-button--smb-blue:not(.is-loading):not(.is-disabled):hover {
  background-color: rgba(64, 140, 255, 0.75);
  border-color: unset;
}
.paas-pads-show-page .el-button.el-button--smb-blue.is-disabled {
  background-color: #f7f8fa;
  border: 1px solid #f0f1f2;
  color: #b8becc;
}
.paas-pads-show-page .el-button.el-button--smb-white {
  padding: 8px 16px;
  line-height: normal;
}
.paas-pads-show-page .el-button.el-button--smb-white:not(.is-loading):not(.is-disabled) {
  background: #fff;
}
.paas-pads-show-page .el-button.el-button--smb-white:not(.is-loading):not(.is-disabled):hover {
  color: #408cff;
  background-color: rgba(255, 255, 255, 0.75);
  border-color: unset;
}
.paas-pads-show-page .el-button.el-button--smb-white.is-disabled {
  background-color: #f7f8fa;
  border: 1px solid #f0f1f2;
}
.paas-pads-show-page .el-button.el-button--smb-white:focus {
  color: unset;
}
.paas-pads-show-page .el-alert {
  padding: 4px;
}
.paas-pads-show-page .el-alert--success.is-light {
  background-color: rgba(58, 191, 147, 0.3);
  color: #3abf93;
}
.paas-pads-show-page .el-alert--fail.is-light {
  background-color: #ffe7e5;
  color: #ff7366;
}
.paas-pads-show-page .el-popover {
  min-width: unset;
  padding: 8px;
  border-radius: 4px;
}
.paas-pads-show-page .el-popover.dark-theme {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(0, 0, 0, 0.9);
}
.paas-pads-show-page .el-popover.dark-theme[x-placement^=top] .popper__arrow {
  border-top-color: rgba(0, 0, 0, 0.9);
}
.paas-pads-show-page .el-popover.dark-theme[x-placement^=top] .popper__arrow::after {
  border-top-color: rgba(0, 0, 0, 0.9);
}
.paas-pads-show-page .el-popover.dark-theme[x-placement^=right] .popper__arrow {
  border-right-color: rgba(0, 0, 0, 0.9);
}
.paas-pads-show-page .el-popover.dark-theme[x-placement^=right] .popper__arrow::after {
  border-right-color: rgba(0, 0, 0, 0.9);
}
.paas-pads-show-page .el-popover.dark-theme[x-placement^=bottom] .popper__arrow {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}
.paas-pads-show-page .el-popover.dark-theme[x-placement^=bottom] .popper__arrow::after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}
.paas-pads-show-page .el-popover.dark-theme[x-placement^=left] .popper__arrow {
  border-left-color: rgba(0, 0, 0, 0.9);
}
.paas-pads-show-page .el-popover.dark-theme[x-placement^=left] .popper__arrow::after {
  border-left-color: rgba(0, 0, 0, 0.9);
}
.paas-pads-show-page .el-checkbox.white-theme .el-checkbox__input .el-checkbox__inner {
  background-color: rgba(0, 0, 0, 0);
  border-color: #999;
}
.paas-pads-show-page .el-checkbox.white-theme .el-checkbox__input.is-checked .el-checkbox__inner {
  background-color: #408cff;
  border-color: #408cff;
}
.paas-pads-show-page .el-checkbox.white-theme .el-checkbox__input.is-disabled .el-checkbox__inner {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #4d4d4d;
}
.paas-pads-show-page .el-checkbox.white-theme .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner {
  background-color: #4d4d4d;
  border-color: #4d4d4d;
}
.paas-pads-show-page .el-checkbox.white-theme .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after {
  color: #999;
}
.paas-pads-show-page .el-checkbox.white-theme.is-checked .el-checkbox__label {
  color: #408cff;
}
.paas-pads-show-page .el-upload.white-theme {
  background-color: red;
}
.paas-pads-show-page .noty_layout {
  top: 60px !important;
  z-index: 2010 !important;
}
.paas-pads-show-page .noty_layout .noty_theme__smb-paas-noty {
  padding: 12px 20px 12px 8px;
  border-radius: 4px;
}
.paas-pads-show-page .noty_layout .noty_theme__smb-paas-noty.noty_type__success {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), #47b28f;
  color: #47b28f;
}
.paas-pads-show-page .noty_layout .noty_theme__smb-paas-noty.noty_type__success .noty_body {
  align-items: flex-start;
}
.paas-pads-show-page .noty_layout .noty_theme__smb-paas-noty.noty_type__success .noty_body i {
  font-size: 20px;
  margin-top: 2px;
  margin-right: 4px;
}
.paas-pads-show-page .noty_layout .noty_theme__smb-paas-noty.noty_type__success .noty_close_button {
  top: 12px;
  right: 4px;
  font-weight: unset;
  background-color: unset;
}
.paas-pads-show-page .noty_layout .noty_theme__smb-paas-noty.noty_type__warning {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), #e5a82e;
  color: #e5a82e;
}
.paas-pads-show-page .noty_layout .noty_theme__smb-paas-noty.noty_type__warning .noty_body {
  align-items: flex-start;
}
.paas-pads-show-page .noty_layout .noty_theme__smb-paas-noty.noty_type__warning .noty_body i {
  font-size: 20px;
  margin-top: 2px;
  margin-right: 4px;
}
.paas-pads-show-page .noty_layout .noty_theme__smb-paas-noty.noty_type__warning .noty_close_button {
  top: 12px;
  right: 4px;
  font-weight: unset;
  background-color: unset;
}
.paas-pads-show-page .noty_layout .noty_theme__smb-paas-noty.noty_type__error {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), #d9574c;
  color: #d9574c;
}
.paas-pads-show-page .noty_layout .noty_theme__smb-paas-noty.noty_type__error .noty_body {
  align-items: flex-start;
}
.paas-pads-show-page .noty_layout .noty_theme__smb-paas-noty.noty_type__error .noty_body i {
  font-size: 20px;
  margin-top: 2px;
  margin-right: 4px;
}
.paas-pads-show-page .noty_layout .noty_theme__smb-paas-noty.noty_type__error .noty_close_button {
  top: 12px;
  right: 4px;
  font-weight: unset;
  background-color: unset;
}
.paas-pads-show-page .noty_layout .noty_theme__smb-paas-noty ~ .noty_theme__smb-paas-noty {
  margin-top: 12px;
}
.paas-pads-show-page .noty_layout .retry-active-playground,
.paas-pads-show-page .noty_layout .pad-noty-restart-playground {
  text-decoration: underline;
}
.paas-pads-show-page .paas-logo {
  width: 100%;
  height: 60px;
}
.paas-pads-show-page .paas-logo-icon-wrap {
  border-radius: 4px;
}
.paas-pads-show-page .paas-logo-icon-wrap .smb-logo {
  width: 40px;
  height: 40px;
  transform: scale(0.7);
  transform-origin: center center;
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/paas-aside-menu-affbf229c85eef242b54a0b70872d237d2d2d34fd82bc7bdf0247294228c7931.png);
  display: none;
}
.paas-pads-show-page .paas-logo-icon-wrap .smb-logo:first-child {
  display: block;
  background-position: -40px -1480px;
}
.paas-pads-show-page .paas-logo-icon-wrap.is-current {
  cursor: pointer;
}
.paas-pads-show-page .paas-logo-icon-wrap.is-current:hover > .smb-logo:first-child {
  display: none;
  background-position: -40px -1480px;
}
.paas-pads-show-page .paas-logo-icon-wrap.is-current:hover > .smb-logo:last-child {
  display: block;
  background-position: -120px -1480px;
}
.paas-pads-show-page #paas-server-error-dialog .error-img .smb-icon-warning-circle {
  font-size: 54px;
  color: #d9574c;
}
.paas-pads-show-page #paas-server-error-dialog .error-body-desc {
  font-size: 12px;
  color: #999;
}
.paas-pads-show-page #paas-server-error-dialog .error-body-desc .showmebug-feige {
  width: 80px;
  height: 80px;
}
.paas-pads-show-page #paas-server-error-dialog .el-collapse {
  border: unset;
}
.paas-pads-show-page #paas-server-error-dialog .el-collapse .el-collapse-item__header .collapse-title {
  flex: 1 0 90%;
  order: 1;
  color: #fff;
  width: 90%;
  margin-left: 4px;
}
.paas-pads-show-page #paas-server-error-dialog .el-collapse .el-collapse-item__wrap {
  z-index: 9;
  background: #383a3d;
  border: none;
}
.paas-pads-show-page #paas-server-error-dialog .el-collapse .el-collapse-item__content {
  height: 300px;
  overflow: auto;
}
.paas-pads-show-page #paas-server-error-dialog .el-collapse .el-collapse-item__content .item-title {
  color: #999;
  font-size: 12px;
}
.paas-pads-show-page #paas-server-error-dialog .el-collapse .el-collapse-item__content .item-message {
  color: #fff;
  font-size: 14px;
}
.paas-pads-show-page .paas-testcase-panel {
  height: 100%;
  background-color: #2e3033;
}
.paas-pads-show-page .paas-testcase-panel-testcases {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  overflow-y: auto;
  position: relative;
}
.paas-pads-show-page .paas-testcase-panel-testcases::-webkit-scrollbar {
  display: none;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase {
  padding-bottom: 8px;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase:not(:first-child) {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 8px;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .smb-icon-close,
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .smb-pad-text {
  cursor: default;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .smb-icon-close.fail, .paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .smb-icon-close.compile_fail,
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .smb-pad-text.fail,
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .smb-pad-text.compile_fail {
  color: #d9574c;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .smb-icon-close.success,
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .smb-pad-text.success {
  color: #47b28f;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .smb-icon-close.test-case-status,
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .smb-pad-text.test-case-status {
  margin-left: 16px;
  position: relative;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .smb-icon-close.test-case-status::after,
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .smb-pad-text.test-case-status::after {
  position: absolute;
  content: "";
  left: -8px;
  top: 2px;
  height: 12px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .smb-icon {
  font-size: 16px;
  color: #999;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .smb-icon.hidden-icon {
  color: #ccc;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-count {
  display: flex;
  gap: 30px;
  padding-bottom: 8px;
  font-size: 14px;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-count-item {
  padding-right: 10px;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-count-item:first-child {
  border-left: 3px solid #408cff;
  padding-left: 9px;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-count-item:not(:first-child) {
  color: #ccc;
}
@media (max-width: 576px) {
  .paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-count {
    padding-left: 8px;
  }
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-desc {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-file {
  background-color: #3a3c40;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-file .testcase-title {
  line-height: 1.5;
  flex: 1;
  width: 1px;
  order: 1;
  display: flex;
  align-items: center;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-file .testcase-title-text {
  flex: 1;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-file .testcase-title .smb-icon.smb-icon-click-enable:hover {
  color: #fff;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-file .testcase-title .smb-icon.smb-icon-click-disable {
  color: #666;
  cursor: not-allowed !important;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-file .testcase-title .testcase-running {
  color: #408cff;
  width: 20px;
  height: 20px;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-file .testcase-title .testcase-running svg {
  animation: roll 1s ease-in-out infinite;
  overflow: visible;
}
@keyframes roll {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-file .testcase-body {
  min-height: 30px;
  position: relative;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-file .testcase-body .testcase-detail-btn {
  position: absolute;
  right: 8px;
  bottom: 0;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-file .testcase-body-option {
  word-break: break-all;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-file .file-testcase.el-collapse-item .el-collapse-item__header {
  border-radius: unset;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-file .file-testcase.el-collapse-item .el-collapse-item__header .el-collapse-item__arrow {
  display: block;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-file .file-testcase.el-collapse-item.is-disabled .el-collapse-item__header {
  color: #fff;
  cursor: default;
  background-color: unset;
  border-radius: unset;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase-file .file-testcase.el-collapse-item.is-disabled .el-collapse-item__arrow {
  display: none;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .el-collapse-item__header {
  display: flex;
  height: 28px;
  border-radius: unset;
  padding: 4px 8px;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .el-collapse-item__header .el-collapse-item__arrow {
  margin-right: 8px;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .el-collapse-item__header.is-active {
  background-color: #3a3c40;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .el-collapse-item__header:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .el-collapse-item__header.focusing:focus {
  color: #fff;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .el-collapse-item__wrap {
  background-color: unset;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .el-collapse-item__wrap .el-collapse-item__content {
  padding: 0;
  color: #ccc;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .el-collapse-item__wrap .el-collapse-item__content .el-collapse-item__header {
  padding-left: 24px;
  border-radius: unset;
}
.paas-pads-show-page .paas-testcase-panel-testcases .paas-testcase-panel-testcase .el-collapse-item__wrap .el-collapse-item__content .el-collapse-item__wrap {
  padding-left: 48px;
  padding-bottom: 4px;
}
.paas-pads-show-page .paas-testcase-panel .generate-testcase-wrap {
  margin-top: 20px;
  flex-direction: column;
}
.paas-pads-show-page .paas-testcase-panel .generate-testcase-wrap .generate-testcase-tips {
  color: #ccc;
  padding: 0 4px;
  font-weight: 400;
}
.paas-pads-show-page .paas-testcase-panel .generate-testcase-wrap .generate-testcase-tips .color-helper-green {
  color: #47b28f;
}
.paas-pads-show-page .paas-testcase-panel #testcase-detail-dialog {
  overflow: hidden;
}
.paas-pads-show-page .paas-testcase-panel #testcase-detail-dialog .el-dialog {
  max-height: 95vh;
  overflow-y: hidden;
}
.paas-pads-show-page .paas-testcase-panel #testcase-detail-dialog .el-dialog .el-dialog__body {
  max-height: calc(95vh - 50px);
  overflow-y: auto;
}
.paas-pads-show-page .paas-testcase-panel #testcase-detail-dialog .el-dialog .el-dialog__body > .dialog-body .test-case-result-tip {
  color: #e5a82e;
  padding: 8px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 12px;
  background-color: rgba(229, 168, 46, 0.2);
}
.paas-pads-show-page .paas-testcase-panel #testcase-detail-dialog .el-dialog .el-dialog__body > .dialog-body > .vue-terminal .terminal {
  padding: 8px 12px 8px 16px;
}
.paas-pads-show-page .paas-testcase-panel #testcase-detail-dialog .el-dialog .el-dialog__body > .dialog-body > .vue-terminal .terminal > .xterm-viewport {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow-y: hidden;
}
.paas-pads-show-page .paas-testcase-panel #testcase-detail-dialog .el-dialog .el-dialog__body > .dialog-body > .vue-terminal .terminal > .xterm-viewport::-webkit-scrollbar {
  display: unset;
  background-color: unset;
}
.paas-pads-show-page .paas-testcase-panel.custom-testcase-output {
  width: 100%;
}
.paas-pads-show-page .paas-testcase-panel.custom-testcase-output .paas-testcase-panel-testcases {
  width: 100%;
}
.paas-pads-show-page .paas-testcase-panel.custom-testcase-output .paas-testcase-panel-testcases .paas-testcase-panel-testcase {
  width: 100%;
}
.paas-pads-show-page .paas-testcase-panel.custom-testcase-output .paas-testcase-panel-testcases .paas-testcase-panel-testcase-file {
  width: 100%;
  overflow: hidden;
}
.paas-pads-show-page .paas-testcase-panel.custom-testcase-output .paas-testcase-mysql-body-panel,
.paas-pads-show-page .paas-testcase-panel.custom-testcase-output .paas-testcase-verilog-body-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #3a3c40;
  border-radius: 0px 0px 4px 4px;
  padding: 4px;
}
.paas-pads-show-page .paas-testcase-panel.custom-testcase-output .paas-testcase-mysql-body-panel .file-testcase,
.paas-pads-show-page .paas-testcase-panel.custom-testcase-output .paas-testcase-verilog-body-panel .file-testcase {
  width: 100%;
  overflow: hidden;
}
.paas-pads-show-page .paas-testcase-panel.custom-testcase-output .paas-testcase-mysql-body-panel .file-testcase-no-output-desc,
.paas-pads-show-page .paas-testcase-panel.custom-testcase-output .paas-testcase-mysql-body-panel .file-testcase-output-desc,
.paas-pads-show-page .paas-testcase-panel.custom-testcase-output .paas-testcase-mysql-body-panel .file-testcase-output-error-text,
.paas-pads-show-page .paas-testcase-panel.custom-testcase-output .paas-testcase-verilog-body-panel .file-testcase-no-output-desc,
.paas-pads-show-page .paas-testcase-panel.custom-testcase-output .paas-testcase-verilog-body-panel .file-testcase-output-desc,
.paas-pads-show-page .paas-testcase-panel.custom-testcase-output .paas-testcase-verilog-body-panel .file-testcase-output-error-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4px 4px 4px 22px;
  gap: 4px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #cccccc;
}
.paas-pads-show-page .paas-testcase-panel.custom-testcase-output .paas-testcase-mysql-body-panel .file-testcase-output-error-text,
.paas-pads-show-page .paas-testcase-panel.custom-testcase-output .paas-testcase-verilog-body-panel .file-testcase-output-error-text {
  color: #d9574c;
}
.paas-pads-show-page .drawing-question-page {
  width: 100%;
  height: calc(100vh - 120px);
  position: relative;
}
.paas-pads-show-page .drawing-question-page .drawing-question {
  position: relative;
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .drawing-question-page .drawing-question .smbMxEditorContainer.smbMxEditorContainer-theme-dark .smbMxSidebarContainer .smbMxSidebarMenuItem .smbMxSidebarMenuItemThumb {
  left: 92px;
}
.paas-pads-show-page .drawing-question-page .drawing-question__header {
  display: none;
}
.paas-pads-show-page .drawing-question-page.is-mobile .drawing-question__header {
  height: 44px;
  min-height: 44px;
  padding: 0 16px;
  background: rgba(0, 0, 0, 0.8);
}
.paas-pads-show-page .drawing-question-page.is-mobile .drawing-question {
  height: calc(100% - 44px);
}
.paas-pads-show-page .drag__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  margin: 0;
  z-index: 2003;
}
.paas-pads-show-page .answerarea-content-dialog .el-drawer__header,
.paas-pads-show-page .mobile-answer-area-drawer .el-drawer__header {
  display: none;
}
.paas-pads-show-page .answerarea-content-dialog .drag-body-content,
.paas-pads-show-page .mobile-answer-area-drawer .drag-body-content {
  position: relative;
}
.paas-pads-show-page .answerarea-content-dialog .drag-body-content::after,
.paas-pads-show-page .mobile-answer-area-drawer .drag-body-content::after {
  content: "";
  width: 100%;
  position: absolute;
  top: 52px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .answerarea-content-dialog .drag-body-content .drag-header-close,
.paas-pads-show-page .mobile-answer-area-drawer .drag-body-content .drag-header-close {
  position: absolute;
  top: 18px;
  right: 12px;
}
.paas-pads-show-page .answerarea-content-dialog .close-btn,
.paas-pads-show-page .mobile-answer-area-drawer .close-btn {
  position: absolute;
  right: 10px;
  top: 4px;
}
.paas-pads-show-page .answerarea-content-dialog .answerarea-content,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content {
  height: 100%;
  position: relative;
}
.paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs {
  height: 100%;
}
.paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__header,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__header {
  cursor: move;
}
.paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__header .el-tabs__nav-wrap::after,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__header .el-tabs__nav-wrap::after {
  content: none;
}
.paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__header .el-tabs__nav-wrap .el-tabs__nav .el-tabs__active-bar,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__header .el-tabs__nav-wrap .el-tabs__nav .el-tabs__active-bar {
  display: none;
}
.paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__header .el-tabs__nav-wrap .el-tabs__nav .el-tabs__item,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__header .el-tabs__nav-wrap .el-tabs__nav .el-tabs__item {
  color: #999;
  padding: 0;
  margin-right: 30px;
}
.paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__header .el-tabs__nav-wrap .el-tabs__nav .el-tabs__item:hover,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__header .el-tabs__nav-wrap .el-tabs__nav .el-tabs__item:hover {
  color: #fff;
}
.paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__header .el-tabs__nav-wrap .el-tabs__nav .el-tabs__item.is-active,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__header .el-tabs__nav-wrap .el-tabs__nav .el-tabs__item.is-active {
  color: #fff;
  position: relative;
}
.paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__header .el-tabs__nav-wrap .el-tabs__nav .el-tabs__item.is-active::after,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__header .el-tabs__nav-wrap .el-tabs__nav .el-tabs__item.is-active::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  bottom: 0;
  left: 50%;
  background: #cc3f33;
  border-radius: 2px;
  transform: translate(-50%, 0);
}
.paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content {
  height: calc(100% - 52px);
}
.paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane {
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror {
  padding: 12px;
  background: #222426;
  border: unset;
  border-radius: 8px;
  font-size: 14px;
}
.paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-scroll,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-scroll {
  margin-bottom: -50px;
  padding-bottom: -15px;
  height: 100%;
}
.paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-gutters,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-gutters {
  background: #222426;
}
.paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-linenumber,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .CodeMirror-linenumber {
  color: #999;
}
.paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror pre.CodeMirror-placeholder.CodeMirror-line-like,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror pre.CodeMirror-placeholder.CodeMirror-line-like {
  color: #999;
}
.paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror.readyOnly,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror.readyOnly {
  cursor: not-allowed;
}
.paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane#pane-answer .CodeMirror,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane#pane-answer .CodeMirror {
  padding-left: 0;
}
.paas-pads-show-page .d42_blank-tips {
  display: none;
}
.paas-pads-show-page .d42_blank-warp {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.paas-pads-show-page .d42_blank-warp .blank_container {
  display: flex;
  margin-top: 8px;
  width: 100%;
}
.paas-pads-show-page .d42_blank-warp .blank_container .item-title {
  margin-right: 10px;
  width: 50%;
  display: flex;
  justify-content: right;
}
.paas-pads-show-page .d42_blank-warp .blank_container .item-shortCut {
  display: flex;
  width: 50%;
}
.paas-pads-show-page .d42_blank-warp .blank_container .item-shortCut-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0px 4px;
  margin-right: 6px;
}
.paas-pads-show-page .quick-open-file {
  padding: 12px;
  margin-bottom: 44px;
}
.paas-pads-show-page .quick-open-file .split-line {
  margin-bottom: 12px;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .quick-open-file-title {
  margin-bottom: 12px;
  font-size: 14px;
}
.paas-pads-show-page .quick-open-file-item {
  background: #3a3c40;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-left: 2px solid transparent;
}
.paas-pads-show-page .quick-open-file-item span {
  margin: 0 auto 0 4px;
}
.paas-pads-show-page .quick-open-file-item i {
  font-size: 16px;
}
.paas-pads-show-page .quick-open-file-item.active {
  border-radius: 0 4px 4px 0;
  border-color: #408cff;
  background: rgba(64, 140, 255, 0.3);
}
.paas-pads-show-page .answerarea-aside-panel {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.paas-pads-show-page .answerarea-aside-panel-header {
  font-weight: 600;
  font-size: 14px;
  height: 44px;
  color: #fff;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page .answerarea-aside-panel-header .smb-icon.smb-icon-tooltip {
  color: #666;
  cursor: pointer;
}
.paas-pads-show-page .answerarea-aside-panel-header .smb-icon.smb-icon-tooltip:hover {
  color: #fff;
}
.paas-pads-show-page .answerarea-aside-panel-body {
  padding: 12px 12px 40px;
  height: calc(100% - 44px);
  overflow-y: auto;
}
.paas-pads-show-page .answerarea-aside-panel-body .no-data {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: #999;
  font-size: 12px;
  width: 100%;
  padding: 20px 0;
  text-align: center;
}
.paas-pads-show-page .answerarea-aside-panel #answerareas-desc-dialog .el-dialog__body {
  padding-top: 0;
}
.paas-pads-show-page .answerareas {
  padding-bottom: 60px;
}
.paas-pads-show-page .answerareas-files-wrapper {
  position: relative;
}
.paas-pads-show-page .answerareas-files-wrapper .answerareas-files-path {
  color: #999;
  font-size: 14px;
}
.paas-pads-show-page .answerareas-files-wrapper .answerareas-files-item {
  background: #3a3c40;
  font-size: 12px;
  padding: 0 12px;
  margin-bottom: 1px;
  height: 36px;
}
.paas-pads-show-page .answerareas-files-wrapper .answerareas-files-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.paas-pads-show-page .answerareas-files-wrapper .answerareas-files-item:last-child {
  margin-bottom: 12px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.paas-pads-show-page .answerareas-files-wrapper .answerareas-files-item .operation-group {
  height: 100%;
}
.paas-pads-show-page .answerareas-files-wrapper .answerareas-files-item .operation-group span {
  height: 100%;
  padding: 0 4px;
  cursor: pointer;
}
.paas-pads-show-page .answerareas-files-wrapper .answerareas-files-item .operation-group span i {
  color: #999;
}
.paas-pads-show-page .answerareas-files-wrapper .answerareas-files-item .operation-group span:hover i {
  color: #fff;
}
.paas-pads-show-page .answerareas-files-wrapper .answerareas-files-item .title {
  color: #ffffff;
  margin-left: 8px;
}
.paas-pads-show-page .answerareas-files-wrapper .answerareas-files-item .index-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  color: #999;
}
.paas-pads-show-page .answerareas-files-wrapper .answerareas-files-item.active {
  background: rgba(64, 140, 255, 0.3);
  position: relative;
}
.paas-pads-show-page .answerareas-files-wrapper .answerareas-files-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #408cff;
  width: 2px;
}
.paas-pads-show-page .answerareas-files-wrapper .answerareas-files-item.active .index-tag {
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.5);
}
.paas-pads-show-page .answerareas-files-wrapper .answerareas-files-item.active .smb-icon {
  color: #ffffff;
}
.paas-pads-show-page .drag-wrap {
  position: fixed;
  height: fit-content;
  left: 40%;
  bottom: 80px;
  background: #3a3c40;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  z-index: 1200;
  min-width: 400px;
  min-height: 400px;
  max-height: 800px;
  max-width: 800px;
  visibility: hidden;
}
.paas-pads-show-page .drag-wrap.visible {
  flex-direction: column;
  visibility: visible;
}
.paas-pads-show-page .drag-wrap .drag-header {
  justify-content: stretch;
  width: 100%;
  height: 46px;
  padding: 0 12px;
  position: relative;
}
.paas-pads-show-page .drag-wrap .drag-header.hidden {
  display: none;
}
.paas-pads-show-page .drag-wrap .drag-header-title {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  height: 100%;
  flex: auto;
  cursor: move;
}
.paas-pads-show-page .drag-wrap .drag-header-close {
  outline: none;
  padding: 4px;
  background-color: transparent;
  border: unset;
}
.paas-pads-show-page .drag-wrap .drag-header-close i {
  font-size: 20px;
  color: #ccc;
}
.paas-pads-show-page .drag-wrap .drag-header-close:hover i {
  color: #fff;
}
.paas-pads-show-page .drag-wrap .drag-header::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .drag-wrap .drag-body {
  flex: auto;
  height: 1px;
  display: flex;
}
.paas-pads-show-page .drag-wrap .drag-body .drag-body-content-wrap {
  flex: auto;
  width: 1px;
}
.paas-pads-show-page .drag-wrap .drag-body .drag-body-content-wrap .drag-body-content {
  padding: 12px;
  height: 100%;
  width: 100%;
}
.paas-pads-show-page .paas-pad-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #222426;
}
.paas-pads-show-page .paas-pad-wrap .paas-pad-wrap-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.paas-pads-show-page .paas-pad-wrap .pad-layout {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.paas-pads-show-page .paas-pad-wrap .pad-layout-aside {
  background: #2e3033;
  position: relative;
}
.paas-pads-show-page .paas-pad-wrap .pad-layout-aside:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.paas-pads-show-page .paas-pad-wrap .pad-layout-body {
  width: calc(100% - 40px);
  height: 100%;
}
.paas-pads-show-page .paas-pad-wrap .pad-layout-body-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  background: #2e3033;
}
.paas-pads-show-page .paas-pad-wrap .pad-layout-body-header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.5);
}
.paas-pads-show-page .paas-pad-wrap .pad-layout-body-content {
  position: relative;
  height: calc(100% - 120px);
}
.paas-pads-show-page .paas-pad-wrap .pad-layout-body-content-aside {
  height: 100%;
  overflow: unset;
  background: #2e3033;
  font-size: 14px;
}
.paas-pads-show-page .paas-pad-wrap .pad-layout-body-content-body {
  background: #3a3c40;
  padding: 0;
  height: 100%;
  overflow: unset;
}
.paas-pads-show-page .paas-pad-wrap .pad-layout-body-footer {
  width: 100%;
  padding: 0;
  position: relative;
  background: #2e3033;
}
.paas-pads-show-page .paas-pad-wrap .pad-layout-body-footer:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.5);
}
.paas-pads-show-page .paas-pad-wrap .mobile-layout {
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .paas-pad-wrap .mobile-layout-header {
  padding: 0 16px;
  background: #2e3033;
}
.paas-pads-show-page .paas-pad-wrap .mobile-layout-body {
  flex: auto;
  padding: unset;
  height: calc(100% - 120px);
}
.paas-pads-show-page .paas-pad-wrap .mobile-layout-footer {
  padding: 0;
  background: #2e3033;
}
.paas-pads-show-page .new-paas-layout {
  background: rgb(23, 24, 26);
}
.paas-pads-show-page .new-paas-layout-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  background: #2e3033;
  height: 60px;
}
.paas-pads-show-page .new-paas-layout-header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 56px;
  width: calc(100% - 56px);
  height: 1px;
  background: rgba(0, 0, 0, 0.5);
}
.paas-pads-show-page .new-paas-layout-header .paas-logo-wrap {
  width: 56px;
  min-width: 56px;
  position: relative;
}
.paas-pads-show-page .new-paas-layout-header .paas-logo-wrap:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.paas-pads-show-page .new-paas-layout-aside {
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .new-paas-layout-aside .mask {
  position: fixed;
  z-index: 12;
  top: 60px;
  left: 56px;
  width: 59px;
  height: calc(100% - 120px);
  animation: mask-border-right 0.1s ease-in-out 0.3s forwards;
}
.paas-pads-show-page .new-paas-layout-aside .mask-header {
  position: relative;
  height: 44px;
  background-color: unset;
  background: #2e3033 linear-gradient(90deg, #171717 0%, rgba(34, 36, 38, 0) 100%);
}
.paas-pads-show-page .new-paas-layout-aside .mask-header .icon-tip {
  position: absolute;
  top: 8px;
  right: 10px;
  border-radius: 4px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page .new-paas-layout-aside .mask-body {
  background: #2e3033 linear-gradient(90deg, #171717 0%, rgba(34, 36, 38, 0) 100%);
  background-color: transparent;
  height: calc(100% - 44px);
}
@keyframes mask-border-right {
  0% {
    border-right: 1px solid transparent;
  }
  100% {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.paas-pads-show-page .new-paas-layout .smb-layout-aside,
.paas-pads-show-page .new-paas-layout .smb-layout-right {
  background-color: #2e3033;
}
.paas-pads-show-page .paas-question {
  position: relative;
}
.paas-pads-show-page .paas-question-body {
  height: 100%;
  width: 100%;
}
.paas-pads-show-page .paas-question-body .paas-question-editor {
  width: 1px;
  height: 100%;
  flex: auto;
}
.paas-pads-show-page .paas-question-body .paas-question-editor.hide-close-file .d42-file-header-item .close {
  display: none;
}
.paas-pads-show-page .paas-question-body .paas-question-components {
  overflow-x: hidden;
  width: 30%;
  flex-wrap: wrap;
  position: relative;
  /* 面试 笔试 题目预览 Markdown 样式覆盖 */
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-window {
  height: 50%;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .paas-question-body .paas-question-components .hide-open-browser-btn .css-1avmbuj,
.paas-pads-show-page .paas-question-body .paas-question-components .hide-open-browser-btn .open-browser {
  display: none;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console {
  width: 100%;
  padding: unset;
  background-color: #2e3033;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console.half-height {
  height: 50%;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console.full-height {
  height: 100%;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-nav-item-box {
  margin: 8px;
  max-height: 50px;
  position: relative;
  width: calc(100% - 16px);
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-nav-item-box::after {
  position: absolute;
  content: "";
  left: -8px;
  right: -8px;
  bottom: -8px;
  width: calc(100% + 16px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-nav-item-box #tab-console.smb-tab-nav-item,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-nav-item-box #tab-shell.smb-tab-nav-item {
  position: relative;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-nav-item-box #tab-console.smb-tab-nav-item::after,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-nav-item-box #tab-shell.smb-tab-nav-item::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #d9574c;
  border-radius: 50%;
  display: none;
  position: absolute;
  right: 0;
  top: 0;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console.panel-console-data-changed #tab-console.smb-tab-nav-item::after {
  display: inline;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console.panel-terminal-data-changed #tab-shell.smb-tab-nav-item::after {
  display: inline;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box {
  padding: 0 8px 8px;
  height: calc(100% - 52px);
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-shell,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-console,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-preview,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-mysql_table,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-verilog_wave,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-unittest,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-answer,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-debug,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-candidatorInfoPane,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-shell,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-console,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-markdown-preview,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-answer {
  height: 100%;
  width: 100%;
  min-width: 100%;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-shell .xterm-screen,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-console .xterm-screen,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-preview .xterm-screen,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-mysql_table .xterm-screen,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-verilog_wave .xterm-screen,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-unittest .xterm-screen,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-answer .xterm-screen,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-debug .xterm-screen,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-candidatorInfoPane .xterm-screen,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-shell .xterm-screen,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-console .xterm-screen,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-markdown-preview .xterm-screen,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-answer .xterm-screen {
  width: 100% !important;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-shell .paas-question-markdown-preview,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-shell .paas-question-answer,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-shell .xterm-viewport,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-console .paas-question-markdown-preview,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-console .paas-question-answer,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-console .xterm-viewport,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-preview .paas-question-markdown-preview,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-preview .paas-question-answer,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-preview .xterm-viewport,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-mysql_table .paas-question-markdown-preview,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-mysql_table .paas-question-answer,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-mysql_table .xterm-viewport,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-verilog_wave .paas-question-markdown-preview,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-verilog_wave .paas-question-answer,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-verilog_wave .xterm-viewport,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-unittest .paas-question-markdown-preview,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-unittest .paas-question-answer,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-unittest .xterm-viewport,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-markdown-preview,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-answer .xterm-viewport,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-debug .paas-question-markdown-preview,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-debug .paas-question-answer,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-debug .xterm-viewport,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-candidatorInfoPane .paas-question-markdown-preview,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-candidatorInfoPane .paas-question-answer,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-candidatorInfoPane .xterm-viewport,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-shell .paas-question-markdown-preview,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-shell .paas-question-answer,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-shell .xterm-viewport,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-console .paas-question-markdown-preview,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-console .paas-question-answer,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-console .xterm-viewport,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-markdown-preview .paas-question-markdown-preview,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-markdown-preview .paas-question-answer,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-markdown-preview .xterm-viewport,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-answer .paas-question-markdown-preview,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-answer .paas-question-answer,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-answer .xterm-viewport {
  overflow-y: auto;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-debug .paas-question-debug {
  height: 100%;
  overflow-y: auto;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-debug .d42-debug-btn {
  border-width: 0;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-shell,
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-console {
  margin: 0 -8px;
  width: calc(100% + 16px);
  min-width: calc(100% + 16px);
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-unittest {
  overflow: auto;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-unittest .unittest-result-box {
  padding-top: 8px;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .smb-tab-content-item {
  order: 1;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .smb-tab-content-item.is-invisible {
  order: 2;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .paas-question-markdown-preview {
  overflow-y: auto;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .xterm-progress-box .xterm-progress-content {
  max-width: 200px;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .unittest-result-box {
  color: #fff;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console-footer {
  position: absolute;
  left: 0px;
  bottom: 0;
  z-index: 10;
  height: 48px;
  width: 100%;
  padding-left: 8px;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console-footer::before {
  content: "";
  position: absolute;
  width: calc(100% + 16px);
  height: 1px;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console-footer .paas-question-shell-console-run {
  padding: 4px 8px;
}
.paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console-footer .paas-question-shell-console-run-icon {
  width: 16px;
  height: 16px;
}
.paas-pads-show-page .paas-question-body .paas-question-components .markdown-question {
  max-height: unset;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 0.75rem;
}
.paas-pads-show-page .paas-question-body .paas-question-components .markdown-question ul,
.paas-pads-show-page .paas-question-body .paas-question-components .markdown-question ol,
.paas-pads-show-page .paas-question-body .paas-question-components .markdown-question p {
  color: #cccccc;
}
.paas-pads-show-page .invite-candidate-page {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel {
  height: 100%;
  background-color: #222426;
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/paas-pad/invite-background-496950f09f9116c49e5e6dbc3d38ac2890780f5be2a723f9f3ce49c820b9281d.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel .pads-wrap {
  width: 100%;
  overflow-y: auto;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel .pads-wrap .pads-content {
  min-height: 100%;
  flex-direction: column;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-box {
  width: 445px;
  background: #2e3033;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel .smb-dropdown .dropdown-menu {
  margin-top: 4px;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel .smb-dropdown .dropdown-menu.show {
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.25);
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-header {
  font-size: 14px;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-header img.inviter-avatar {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  object-fit: cover;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-header .creator-name {
  font-size: 16px;
  color: #fff;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-header .smb-dropdown-btn-icon {
  color: #fff;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-header-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-header-perform-desc {
  color: #999;
  font-size: 12px;
  max-width: 300px;
  margin: 0 auto;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-header-helps {
  background: rgba(64, 140, 255, 0.05);
  border: 1px solid rgba(64, 140, 255, 0.2);
  border-radius: 8px;
  padding: 12px;
  margin: 0 40px;
  justify-content: space-around;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-header-helps .actions-separator {
  width: 12px;
  height: 0px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form {
  margin: 20px 40px 0;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form-item__label {
  width: 100%;
  line-height: 20px;
  margin-bottom: 8px;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form-item__label .form-item-label {
  justify-content: space-between;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form-item__label .smb-link, .paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form-item__label .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .el-button, .paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .invite-candidate-page .invite-candidate-panel-body .el-form-item__label .el-button {
  cursor: pointer;
  user-select: none;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form-item__content {
  line-height: 36px;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form-item__content .el-input__inner {
  line-height: 36px;
  height: 36px;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form-item__content .el-form-item__error {
  position: unset;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form .el-checkbox {
  margin-bottom: 0;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form .el-checkbox__label {
  color: #ccc;
  font-weight: 400;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form .el-checkbox + .el-form-item__error {
  margin-top: -8px;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form .smb-btn, .paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form .d42-modal-footer .d42-btn, .paas-pads-show-page .d42-modal-footer .invite-candidate-page .invite-candidate-panel-body .el-form .d42-btn {
  margin-top: 20px;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form .smb-btn:disabled, .paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form .d42-modal-footer .d42-btn:disabled, .paas-pads-show-page .d42-modal-footer .invite-candidate-page .invite-candidate-panel-body .el-form .d42-btn:disabled {
  cursor: not-allowed;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form .smb-icon-tooltip {
  color: #999;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form .smb-icon-tooltip:hover {
  color: #ccc;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form.new_auth_pad_join_team_form {
  margin-bottom: 0;
}
.paas-pads-show-page .invite-candidate-page .invite-candidate-panel-body .el-form.new_auth_pad_join_team_form .team-user-limit {
  font-size: 12px;
}
.paas-pads-show-page .paas-aside-menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow-y: auto;
  padding: 0 0 20px;
  background: #2e3033;
  position: relative;
}
.paas-pads-show-page .paas-aside-menu:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.paas-pads-show-page .paas-aside-menu .paas-aside-menu-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.paas-pads-show-page .paas-aside-menu .paas-aside-menu-area li {
  list-style: none;
  cursor: pointer;
  margin-top: 8px;
}
.paas-pads-show-page .paas-aside-menu .paas-aside-menu-area li.unread-message {
  position: relative;
}
.paas-pads-show-page .paas-aside-menu .paas-aside-menu-area li.unread-message:after {
  content: "";
  position: absolute;
  top: 0;
  right: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d9574c;
}
.paas-pads-show-page .paas-aside-menu .paas-aside-menu-area .aside-top-sticky-menu > li:first-child {
  position: relative;
  margin-top: 0;
}
.paas-pads-show-page .paas-aside-menu .paas-aside-menu-area .aside-top-sticky-menu > li:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 1px;
  background-color: #000;
}
.paas-pads-show-page .paas-question-tab-panel {
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .paas-question-tab-panel .smb-tab-content-item-box {
  height: calc(100% - 44px);
}
.paas-pads-show-page .paas-question-tab-panel .smb-tab-content-item-box > *:not(.smb-btn) {
  height: 100%;
  width: 100%;
  min-width: 100%;
  overflow: hidden;
}
.paas-pads-show-page .paas-question-tab-panel .smb-tab-content-item-box > *:not(.smb-btn) > * {
  height: 100%;
  overflow-y: auto;
}
.paas-pads-show-page .paas-question-tab-panel .smb-tab-content-item-box > *:not(#pane-console):not(#pane-shell):not(.smb-btn) > * {
  padding: 8px;
}
.paas-pads-show-page .paas-question-tab-panel.panel-console-data-changed #tab-console.smb-tab-nav-item {
  position: relative;
}
.paas-pads-show-page .paas-question-tab-panel.panel-console-data-changed #tab-console.smb-tab-nav-item::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #d9574c;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
}
.paas-pads-show-page .paas-question-tab-panel.panel-terminal-data-changed #tab-shell.smb-tab-nav-item {
  position: relative;
}
.paas-pads-show-page .paas-question-tab-panel.panel-terminal-data-changed #tab-shell.smb-tab-nav-item::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #d9574c;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
}
.paas-pads-show-page .count-down-timer {
  padding: 8px;
  position: relative;
  color: #fff;
  line-height: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}
.paas-pads-show-page .count-down-timer .timer-content {
  width: 0px;
  height: 100%;
  overflow: hidden;
  transition: width 0.2s;
}
.paas-pads-show-page .count-down-timer .timer-content.show {
  width: 140px;
}
.paas-pads-show-page .count-down-timer .timer-content .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  cursor: default;
}
.paas-pads-show-page .count-down-timer .timer-content .timer-item {
  text-align: left;
  line-height: 18px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.paas-pads-show-page .count-down-timer .timer-content .timer-item .count-down {
  padding-left: 5px;
  padding-right: 5px;
  font-family: "Akrobat";
  font-weight: 600;
  font-size: 16px;
}
.paas-pads-show-page .count-down-timer .timer-content .timer-item .desc {
  white-space: nowrap;
}
.paas-pads-show-page .count-down-timer .timer-content .break-time .count-down {
  color: #e5a82e;
}
.paas-pads-show-page .count-down-timer .mobile-total-time {
  display: none;
  font-size: 12px;
  color: #999;
  font-weight: 400;
}
.paas-pads-show-page .count-down-timer .mobile-timer-action {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
@media (max-width: 992px) {
  .paas-pads-show-page .count-down-timer .timer-content {
    display: none;
  }
  .paas-pads-show-page .count-down-timer .mobile-timer-action {
    display: block;
  }
}
@media (max-width: 576px) {
  .paas-pads-show-page .count-down-timer .mobile-total-time {
    display: block;
  }
  .paas-pads-show-page .count-down-timer .smb-icon-time,
  .paas-pads-show-page .count-down-timer .mobile-timer-action {
    display: none;
  }
}
.paas-pads-show-page .count-down-timer.is-mobile {
  background: unset;
  padding: 4px 0 0;
}
.paas-pads-show-page.paas-pads-show-page {
  height: 100%;
  overflow: hidden;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads {
  height: 100%;
  background-color: #222426;
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/paas-pad/invite-background-496950f09f9116c49e5e6dbc3d38ac2890780f5be2a723f9f3ce49c820b9281d.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads .pads-wrap {
  width: 100%;
  overflow-y: auto;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads .pads-wrap .pads-content {
  min-height: 100%;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads-box {
  width: 445px;
  background: #2e3033;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads .smb-dropdown .dropdown-menu {
  margin-top: 4px;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads .smb-dropdown .dropdown-menu.show {
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.25);
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads-header {
  font-size: 14px;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads-header img.inviter-avatar {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  object-fit: cover;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads-header .creator-name {
  font-size: 16px;
  color: #fff;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads-header .smb-dropdown-btn-icon {
  color: #fff;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads-header-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads-header-perform-desc {
  color: #999;
  font-size: 12px;
  max-width: 300px;
  margin: 0 auto;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads-header-helps {
  background: rgba(64, 140, 255, 0.05);
  border: 1px solid rgba(64, 140, 255, 0.2);
  border-radius: 8px;
  padding: 12px;
  margin: 0 40px;
  justify-content: space-around;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads-header-helps .actions-separator {
  width: 12px;
  height: 0px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads-body form {
  margin: 20px 40px 0;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads-body form .form-group {
  margin-bottom: 20px;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads-body form .form-group label {
  color: #ccc;
  font-size: 14px;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads-body form .form-group .form-control {
  padding: 10px 12px;
  background: #222426;
  border-radius: 4px;
  color: #fff;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads-body form .form-group .form-control::placeholder {
  color: #999;
  font-size: 14px;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads-body form .smb-icon-tooltip {
  color: #999;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads-body form .smb-icon-tooltip:hover {
  color: #ccc;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads-body form.new_auth_pad_join_team_form {
  margin-bottom: 0;
}
.paas-pads-show-page.paas-pads-show-page .invite-candidate-pads-body form.new_auth_pad_join_team_form .team-user-limit {
  font-size: 12px;
}
.paas-pads-show-page #moka-application-info {
  max-height: 100%;
  font-size: 14px;
  overflow: auto;
}
.paas-pads-show-page #moka-application-info .card {
  color: #eeeeee;
  background: #1f1f1f;
}
.paas-pads-show-page #moka-application-info .card .card-header {
  background: #0f0f0f;
}
.paas-pads-show-page #moka-application-info .card .card-header:hover {
  background: #333333;
}
.paas-pads-show-page #moka-application-info .card .card-header button {
  position: relative;
  color: #f7d19d;
  opacity: 1;
}
.paas-pads-show-page #moka-application-info .card .card-header button:hover, .paas-pads-show-page #moka-application-info .card .card-header button:focus, .paas-pads-show-page #moka-application-info .card .card-header button:active {
  opacity: 0.7;
  text-decoration: none;
  box-shadow: unset;
}
.paas-pads-show-page #moka-application-info .card .card-header button::after {
  content: " ";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid #f7d19d;
  border-left: 1px solid #f7d19d;
  transform: rotate(45deg);
}
.paas-pads-show-page #moka-application-info .card .card-header button.collapsed::after {
  top: 30%;
  border-top: unset;
  border-left: unset;
  border-bottom: 1px solid #f7d19d;
  border-right: 1px solid #f7d19d;
}
.paas-pads-show-page #moka-application-info .user-info {
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-left: 10px;
}
.paas-pads-show-page #moka-application-info .user-info .user-avatar {
  margin-right: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: #333;
}
.paas-pads-show-page #moka-application-info .user-info .user-avatar img {
  width: 100%;
  height: 100%;
}
.paas-pads-show-page #moka-application-info .user-info .user-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 60px;
}
.paas-pads-show-page #moka-application-info .user-info .user-content .user-name {
  font-size: 22px;
}
.paas-pads-show-page #moka-application-info .base-group-item {
  margin-bottom: 20px;
}
.paas-pads-show-page #moka-application-info .base-group .title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}
.paas-pads-show-page #moka-application-info .base-group .content .content-row {
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
}
.paas-pads-show-page #moka-application-info .base-group .content .label {
  text-align: right;
  padding-left: 0;
}
.paas-pads-show-page #moka-application-info #moka-application-resume iframe {
  width: 100%;
  min-height: 600px;
}
.paas-pads-show-page #moka-application-info .result-row {
  padding: 10px 20px;
}
.paas-pads-show-page #moka-application-info .result-row-item {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.paas-pads-show-page #moka-application-info .result-row-item .label {
  margin-right: 5px;
  padding-left: 0;
  font-weight: bold;
}
.paas-pads-show-page #moka-application-info .result-row:not(:last-child) {
  border-bottom: 1px solid #666666;
}
.paas-pads-show-page #moka-application-info .feedback-collapse {
  margin-top: 10px;
  padding: 10px 30px;
  border: 1px solid #555555;
}
.paas-pads-show-page #moka-application-info .retry-fetch-link {
  margin-top: 40%;
  display: block;
  text-align: center;
  font-size: 16px;
}
.paas-pads-show-page #moka-application-info.non-technology-editor::-webkit-scrollbar {
  width: 8px;
  cursor: pointer;
}
.paas-pads-show-page #moka-application-info.non-technology-editor::-webkit-scrollbar-thumb:vertical {
  background-color: #c7c7c7;
  border-radius: 100px;
}
.paas-pads-show-page #moka-application-info.non-technology-editor::-webkit-scrollbar-thumb:vertical:active {
  background-color: #c7c7c7;
  border-radius: 100px;
}
.paas-pads-show-page #moka-application-info.non-technology-editor .card {
  border: none;
  background: #ffffff;
}
.paas-pads-show-page #moka-application-info.non-technology-editor .card:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}
.paas-pads-show-page #moka-application-info.non-technology-editor .card .card-header {
  padding: unset;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
}
.paas-pads-show-page #moka-application-info.non-technology-editor .card .card-header button {
  border-radius: unset;
  color: #333333;
  padding-top: 13px;
  padding-bottom: 13px;
}
.paas-pads-show-page #moka-application-info.non-technology-editor .card .card-header button:hover {
  background: #e4e6ea;
}
.paas-pads-show-page #moka-application-info.non-technology-editor .card .card-header button.collapsed::after {
  border-top: unset;
  border-left: unset;
  border-bottom: 1px solid #bdbdbd;
  border-right: 1px solid #bdbdbd;
}
.paas-pads-show-page #moka-application-info.non-technology-editor .card .card-header button::after {
  border-top: 1px solid #bdbdbd;
  border-left: 1px solid #bdbdbd;
}
.paas-pads-show-page #moka-application-info.non-technology-editor .card .card-body {
  color: #333333;
  background: rgba(0, 0, 0, 0.01);
}
.paas-pads-show-page #moka-application-info.non-technology-editor .card .card-body label {
  font-size: 14px;
}
.paas-pads-show-page #moka-application-info.non-technology-editor .card .card-body .content-row.bg-dark {
  background: rgba(0, 0, 0, 0.05) !important;
}
.paas-pads-show-page #moka-application-info.non-technology-editor .card .card-body .result-row:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}
.paas-pads-show-page .paas-pad-video {
  position: relative;
  background: #000000;
  z-index: 1002;
  overflow: hidden;
  float: unset;
  overflow-y: auto;
}
.paas-pads-show-page .paas-pad-video .video-stream {
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper .network-status-wrapper {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1001;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper .network-status-wrapper .network-status-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper .network-status-wrapper .network-status-detail img.network-quality-icon {
  width: 20px;
  height: 20px;
  -webkit-user-drag: none;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper .network-status-wrapper .network-status-detail.with-description span {
  margin: 0 0 0 4px;
  font-weight: 400;
  font-size: 12px;
  color: #cccccc;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper .switch-mode-wrapper {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 1001;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper .switch-mode-wrapper .switch-mode {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 4px;
  cursor: pointer;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper .switch-mode-wrapper .switch-mode:hover i {
  font-size: 20px;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper .switch-mode-wrapper .switch-mode i {
  font-size: 16px;
  color: #ffffff;
  transition: 0.15s;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1000;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper video.mirror {
  transform: rotateY(180deg);
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper video.contain {
  object-fit: contain;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper video::-webkit-media-controls {
  display: none !important;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper .current-user-wrapper-outline {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #408cff;
  z-index: 999;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper .current-user-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #408cff;
  z-index: 999;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper .current-user-wrapper img.current-user-avatar {
  border-radius: 50%;
  width: inherit;
  height: inherit;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper .current-user-wrapper .current-user-caption {
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper .voice-status-wrapper {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 1001;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper .voice-status-wrapper .voice-status-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper .voice-status-wrapper .voice-status-detail span.username {
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
}
.paas-pads-show-page .paas-pad-video .video-stream .video-wrapper .voice-status-wrapper .voice-status-detail .voice-status {
  margin: 0 0 0 4px;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
  margin: 20px 0 0 0;
  z-index: 1000;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .QA-button {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .QA-button i {
  font-size: 16px;
  color: #999999;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .QA-button span {
  margin: 0 0 0 4px;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .QA-button:hover i {
  color: #ffffff;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .QA-button:hover span {
  color: #ffffff;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .action-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  padding: 4px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 26px;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .action-bar .multi-wrapper {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 23px;
  cursor: pointer;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .action-bar .multi-wrapper:hover {
  background: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .action-bar .multi-wrapper.disabled {
  cursor: not-allowed;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .action-bar .multi-wrapper img.action-icon {
  width: 20px;
  height: 20px;
  -webkit-user-drag: none;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .action-bar .multi-wrapper i.action-icon {
  font-size: 20px;
  color: #ffffff;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .action-bar .multi-wrapper .action-icon.with-description ~ span {
  margin: 0 0 0 4px;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .action-bar .multi-wrapper .el-dropdown {
  display: flex;
  border-radius: 50%;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .action-bar .multi-wrapper .el-dropdown:hover {
  background: rgba(255, 255, 255, 0.2);
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .action-bar .multi-wrapper .el-dropdown i.more-icon {
  padding: 4px;
  font-size: 14px;
  color: #ffffff;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .action-bar .multi-wrapper.mr-l {
  margin: 0 0 0 4px;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .action-bar .camera-wrapper {
  margin: 0 4px 0 0;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .action-bar .microphone-wrapper {
  margin: 0 4px 0 0;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .action-bar .more-wrapper {
  margin: 0 4px 0 0;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .action-bar .screen-share-wrapper {
  position: relative;
  margin: 0 4px 0 0;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .action-bar .screen-sharing-wrapper {
  margin: 0 4px 0 0;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .action-bar .stop-wrapper {
  background: #d9574c;
  border-radius: 50%;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .action-bar .stop-wrapper:hover {
  background: #d17169;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .switch-mode-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 0 0 auto;
  cursor: pointer;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .switch-mode-wrapper i {
  font-size: 24px;
  color: #ffffff;
  transition: 0.15s;
}
.paas-pads-show-page .paas-pad-video .video-stream .action-wrapper .switch-mode-wrapper:hover i {
  transform: scale(0.8335);
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-large-mode {
  padding: 20px;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-large-mode .video-wrapper {
  width: 100%;
  height: calc(100% - 66px);
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.7);
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-large-mode .action-bar .multi-wrapper svg.loading-svg {
  width: 20px;
  height: 20px;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode {
  padding: 0;
  border: 2px solid #000000;
  border-radius: 8px;
  transition: border 0.15s;
  overflow: hidden;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode:hover {
  border-color: #999999;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode:hover .video-wrapper .switch-mode-wrapper {
  display: block;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode:hover .action-wrapper .action-bar {
  transform: unset;
  transition-delay: 0s;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode .video-wrapper {
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode .video-wrapper .switch-mode-wrapper {
  display: none;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode .video-wrapper .network-status-wrapper {
  top: 4px;
  left: 4px;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode .video-wrapper .network-status-wrapper .network-status-detail {
  padding: 2px;
  border-radius: 4px;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode .action-wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: unset;
  margin: unset;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode .action-wrapper .action-bar {
  position: relative;
  left: unset;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0;
  transform: translateY(100%);
  transition: 0.15s;
  transition-delay: 1s;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode .action-wrapper .action-bar .multi-wrapper {
  padding: 4px;
  border-radius: 4px;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode .action-wrapper .action-bar .multi-wrapper:hover {
  background: rgba(255, 255, 255, 0.2);
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode .action-wrapper .action-bar .multi-wrapper:hover img.action-icon.active {
  display: block;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode .action-wrapper .action-bar .multi-wrapper:hover img.action-icon:not(.active) {
  display: none;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode .action-wrapper .action-bar .multi-wrapper img.action-icon {
  width: 16px;
  height: 16px;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode .action-wrapper .action-bar .multi-wrapper img.action-icon.active {
  display: none;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode .action-wrapper .action-bar .voice-status-wrapper {
  margin: 0 0 0 auto;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode .action-wrapper .action-bar .voice-status-wrapper .voice-status-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode .action-wrapper .action-bar .voice-status-wrapper .voice-status-detail span.username {
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-normal-mode .action-wrapper .action-bar .voice-status-wrapper .voice-status-detail .voice-status {
  margin: 0 0 0 8px;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-full-mode {
  padding: 20px;
  background: #333333;
}
.paas-pads-show-page .paas-pad-video .video-stream.video-stream-full-mode .video-wrapper {
  width: 100%;
  height: calc(100% - 66px);
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.7);
}
.paas-pads-show-page .paas-pad-video .video-stream.sharing-stream.video-stream-normal-mode {
  border-color: rgba(58, 192, 147, 0.5);
}
.paas-pads-show-page .paas-pad-video .video-stream.sharing-stream.video-stream-normal-mode .video-wrapper video {
  background: #000000;
}
.paas-pads-show-page .paas-pad-video .video-stream.sharing-stream.video-stream-normal-mode:hover {
  border-color: rgb(58, 192, 147);
}
.paas-pads-show-page .paas-pad-video.touch-action-none {
  touch-action: none;
}
.paas-pads-show-page .paas-pad-video .paas-pad-video-mask {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1002;
}
.paas-pads-show-page .paas-pad-video .video-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 80%;
  height: 80%;
  max-width: 900px;
  max-height: 600px;
  z-index: 1002;
  border-radius: 12px;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams-hide {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  margin: 0 0 4px 0;
  padding: 4px 8px;
  color: #ffffff;
  background: #000000;
  height: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  white-space: nowrap;
  transition: 0.15s;
  visibility: hidden;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams-hide span {
  margin: 0 8px 0 0;
  font-weight: 400;
  font-size: 14px;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams-hide i {
  font-size: 16px;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams-hide.reverse {
  flex-direction: row-reverse;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams-hide.reverse span {
  margin: 0 0 0 8px;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams-hide.reverse i {
  transform: rotateY(180deg);
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams-show {
  position: absolute;
  top: 50%;
  right: 100%;
  left: unset;
  padding: 8px;
  transform: translate(0, 50%);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 8px 0 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  white-space: nowrap;
  transform: translate(100vw, 50%);
  transition: 0.25s;
  z-index: 1000;
  opacity: 0;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams-show span {
  margin: 0 0 0 8px;
  font-weight: 400;
  font-size: 14px;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams-show i {
  font-size: 16px;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams-show.active {
  transform: translate(0, 50%);
  opacity: 1;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams-show.reverse {
  flex-direction: row-reverse;
  right: unset;
  left: 100%;
  transform: translate(-100vw, 50%);
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams-show.reverse.active {
  border-radius: 0 8px 8px 0;
  transform: translate(0, 50%);
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams-show.reverse.active span {
  margin: 0 8px 0 0;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams-show.reverse.active i {
  transform: rotateY(180deg);
}
.paas-pads-show-page .paas-pad-video .video-panel .large-streams {
  width: 100%;
  height: 100%;
  background: #3a3c40;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams {
  width: 220px;
  padding: 10px;
  background: #2e3033;
  overflow: hidden auto;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams:hover .normal-streams-hide {
  visibility: visible;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams::-webkit-scrollbar {
  height: 3px;
  width: 3px;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams::-webkit-scrollbar-thumb {
  -webkit-border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams::-webkit-scrollbar-corner {
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams::-webkit-scrollbar-track {
  margin: 12px;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams .video-stream {
  width: 200px;
  height: 150px;
  margin: 4px 0 0 0;
}
.paas-pads-show-page .paas-pad-video .video-panel .normal-streams .video-stream:first-child {
  margin: unset;
}
.paas-pads-show-page .paas-pad-video .video-panel.master-slave-layout {
  display: flex;
  max-width: 960px;
  max-height: 540px;
}
.paas-pads-show-page .paas-pad-video .video-panel.master-slave-layout .large-streams {
  width: calc(100% - 220px);
}
.paas-pads-show-page .paas-pad-video .video-panel.master-slave-layout .normal-streams .video-stream .video-wrapper {
  cursor: nesw-resize;
}
.paas-pads-show-page .paas-pad-video .video-panel.master-slave-layout .normal-streams .video-stream .video-wrapper .switch-mode-wrapper {
  display: none;
}
.paas-pads-show-page .paas-pad-video .video-panel.overview-layout {
  width: 0;
  height: 0;
  max-width: 100%;
  max-height: 100%;
  margin: unset;
  box-shadow: none;
  overflow: visible;
}
.paas-pads-show-page .paas-pad-video .video-panel.overview-layout .normal-streams-hide {
  width: calc(100% - 20px);
  left: unset;
}
.paas-pads-show-page .paas-pad-video .video-panel.overview-layout .large-streams {
  display: none;
}
.paas-pads-show-page .paas-pad-video .video-panel.overview-layout .normal-streams {
  background: transparent;
  position: fixed;
  right: 0;
  top: 60px;
  max-height: 100vh;
}
.paas-pads-show-page .paas-pad-video .video-panel.overview-layout .normal-streams .video-stream {
  box-shadow: none;
  margin: 4px 0 0 0;
}
.paas-pads-show-page .paas-pad-video .video-panel.overview-layout .normal-streams .video-stream.first-stream {
  margin: 44px 0 0 0;
}
.paas-pads-show-page .paas-pad-video .video-panel.fullscreen-layout {
  border-radius: 0;
}
.paas-pads-show-page .paas-pad-video .video-panel.fullscreen-layout .large-streams .video-wrapper {
  background: #000000;
}
.paas-pads-show-page .paas-pad-video .video-panel.fullscreen-layout .normal-streams {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1002;
  width: 200px;
  width: fit-content;
  background: transparent;
}
.paas-pads-show-page .paas-pad-video .video-panel.fullscreen-layout .normal-streams .normal-streams-hide {
  width: calc(100% - 20px);
  left: unset;
}
.paas-pads-show-page .paas-pad-video .video-panel.fullscreen-layout .normal-streams .video-stream.first-stream {
  margin: 44px 0 0 0;
}
.paas-pads-show-page .paas-pad-video .video-panel.fullscreen-layout .normal-streams .video-wrapper .switch-mode-wrapper {
  display: none;
}
@media screen and (max-width: 992px) {
  .paas-pads-show-page .paas-pad-video .video-panel.master-slave-layout {
    max-height: 640px;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.master-slave-layout .large-streams {
    width: 100%;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.master-slave-layout .large-streams .video-wrapper {
    height: calc(100% - 256px);
  }
  .paas-pads-show-page .paas-pad-video .video-panel.master-slave-layout .large-streams .action-wrapper {
    margin: 210px 0 0 0;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.master-slave-layout .normal-streams {
    position: absolute;
    bottom: 86px;
    left: 20px;
    display: flex;
    width: calc(100% - 40px);
    border-radius: 8px;
    overflow: auto hidden;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.master-slave-layout .normal-streams .video-stream {
    margin: 0 0 0 4px;
    flex-shrink: 0;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.master-slave-layout .normal-streams .video-stream:first-child {
    margin: unset;
  }
}
@media screen and (max-width: 576px) {
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout {
    max-width: unset !important;
    max-height: unset !important;
    border-radius: 0;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout:not(.overview-layout) {
    width: 100%;
    height: 100%;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout .large-streams .video-stream {
    padding: unset;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout .large-streams .video-stream .video-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    border-width: 0;
    border-radius: unset;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout .large-streams .video-stream .video-wrapper .voice-status-wrapper {
    top: 8px;
    bottom: unset;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout .large-streams .video-stream .video-wrapper .voice-status-wrapper .voice-status-detail {
    height: 36px;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout .large-streams .video-stream .action-wrapper {
    position: fixed;
    bottom: 0;
    width: -webkit-fill-available;
    margin: 0;
    padding: 16px 12px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: 0.5s;
    transform: translateY(10vh);
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout .large-streams .video-stream .action-wrapper i {
    font-size: 20px;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout .large-streams .video-stream .action-wrapper.active {
    opacity: 1;
    transform: translateY(0);
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout .large-streams .video-stream .action-wrapper.active.action-bar {
    background: rgba(0, 0, 0, 0.8);
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout .large-streams .video-stream.sharing-stream .video-wrapper video {
    object-fit: contain;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout .normal-streams {
    right: 0;
    bottom: 80px;
    left: unset;
    flex-direction: column;
    padding: unset;
    width: fit-content;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout .normal-streams .video-stream {
    margin: 4px 0 0 0;
    flex-shrink: 0;
    width: 80px;
    height: 100px;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout .normal-streams .video-stream:first-child {
    margin: unset;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout .normal-streams .video-stream .video-wrapper {
    height: 100%;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout .normal-streams .video-stream .video-wrapper video {
    border-radius: 6px;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout.master-slave-layout .normal-streams .video-stream {
    margin: unset;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout.master-slave-layout .normal-streams .video-stream.first-stream {
    margin: 44px 0 0 0;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout.master-slave-layout .normal-streams .video-stream .video-wrapper .network-status-wrapper {
    display: none;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout.master-slave-layout .normal-streams .video-stream .video-wrapper .switch-mode-wrapper {
    display: none;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout.master-slave-layout .normal-streams .video-stream .action-wrapper {
    display: none;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout.overview-layout .normal-streams.draggable {
    padding: unset;
    width: fit-content;
    height: fit-content;
    top: auto;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout.overview-layout .normal-streams.draggable .video-stream {
    width: 80px;
    height: 100px;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout.overview-layout .normal-streams.draggable .video-stream .video-wrapper .network-status-wrapper {
    display: none;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout.overview-layout .normal-streams.draggable .video-stream .video-wrapper .switch-mode-wrapper {
    display: none;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout.overview-layout .normal-streams.draggable .video-stream .action-wrapper {
    display: none;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout .normal-streams-hide {
    visibility: visible;
    width: 100%;
    top: 0;
  }
  .paas-pads-show-page .paas-pad-video .video-panel.mobile-layout .normal-streams-show {
    padding: 24px 8px;
  }
}
.paas-pads-show-page .pad-footer {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow-x: auto;
  position: relative;
  background: #2e3033;
}
.paas-pads-show-page .pad-footer:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.5);
}
.paas-pads-show-page .pad-footer .pad-playback-bar {
  flex: auto;
}
.paas-pads-show-page .pad-header {
  width: 100%;
  height: 100%;
  padding: 0 20px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.paas-pads-show-page .pad-header-left {
  display: flex;
  flex: 1;
  height: 100%;
  justify-content: space-between;
}
.paas-pads-show-page .pad-header-left .pad-name {
  font-size: 14px;
  font-weight: 600;
}
.paas-pads-show-page .pad-header-left .pad-name-input {
  width: 240px;
}
.paas-pads-show-page .pad-header-left .pad-name-input .el-input__inner {
  line-height: 1;
  height: 24px;
  line-height: 1;
  padding-left: 4px;
  padding-right: 4px;
}
.paas-pads-show-page .pad-header-left .pad-name .smb-icon-edit-full {
  cursor: pointer;
  color: #999;
}
.paas-pads-show-page .pad-header-left .pad-name .smb-icon-edit-full:hover {
  color: #408cff;
}
.paas-pads-show-page .pad-header-left .pad-name .smb-state-tag {
  margin-left: 12px;
}
.paas-pads-show-page .pad-header-left .pad-name-max-width {
  max-width: 240px;
}
.paas-pads-show-page .pad-header-left .pad-name-container {
  display: flex;
  align-items: center;
}
.paas-pads-show-page .pad-header-left i.smb-icon-stop {
  color: #fff;
}
.paas-pads-show-page .pad-header-center {
  flex: 1;
  justify-content: center;
}
.paas-pads-show-page .pad-header-right {
  flex: 1;
  justify-content: flex-end;
}
.paas-pads-show-page .pad-header-right .separator {
  width: 1;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .pad-header .smb-btn-group.el-dropdown {
  display: flex;
}
.paas-pads-show-page .pad-header .smb-btn-group.el-dropdown > .smb-btn:first-child, .paas-pads-show-page .pad-header .d42-modal-footer .smb-btn-group.el-dropdown > .d42-btn:first-child, .paas-pads-show-page .d42-modal-footer .pad-header .smb-btn-group.el-dropdown > .d42-btn:first-child {
  border-radius: 4px 0 0 4px;
  border-right: unset;
}
.paas-pads-show-page .pad-header .smb-btn-group.el-dropdown > .smb-btn:first-child:hover, .paas-pads-show-page .pad-header .d42-modal-footer .smb-btn-group.el-dropdown > .d42-btn:first-child:hover, .paas-pads-show-page .d42-modal-footer .pad-header .smb-btn-group.el-dropdown > .d42-btn:first-child:hover {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.paas-pads-show-page .pad-header .smb-btn-group.el-dropdown > .smb-btn:first-child:hover + .pad-info, .paas-pads-show-page .pad-header .d42-modal-footer .smb-btn-group.el-dropdown > .d42-btn:first-child:hover + .pad-info, .paas-pads-show-page .d42-modal-footer .pad-header .smb-btn-group.el-dropdown > .d42-btn:first-child:hover + .pad-info {
  border-left: unset;
}
.paas-pads-show-page .pad-header .smb-btn-group.el-dropdown > .pad-info {
  border-radius: 0 4px 4px 0;
  position: relative;
  padding: 8px;
}
.paas-pads-show-page .pad-header .debug-loading-btn {
  color: #408cff !important;
}
.paas-pads-show-page .pad-header .debug-loading-btn svg {
  animation: roll 1s ease-in-out infinite;
  overflow: visible;
}
.paas-pads-show-page .pad-header .debug-loading-btn svg:focus {
  outline: none;
}
@keyframes roll {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.paas-pads-show-page .el-dropdown-menu {
  background: #3a3c40;
  box-shadow: rgba(0, 0, 0, 0.3);
}
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu {
  background: #3a3c40;
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 320px;
  padding: 0;
}
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu .el-divider {
  background: #666;
}
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu .el-divider__text {
  background: #3a3c40;
  padding: 0;
  color: #fff;
  font-weight: 400;
}
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item {
  color: #fff;
  cursor: default;
  line-height: normal;
  flex-direction: column;
  align-items: flex-start;
}
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item.invite-candidate-item {
  padding: 12px 12px 0;
}
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item.invite-xiaomei-item, .paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item.invite-interviewer-item {
  padding: 0px 12px 12px;
}
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item:hover, .paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item:focus {
  background: transparent;
  color: #fff;
}
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item:hover .invite-interviewer-btn,
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item:hover .invite-candidate-btn,
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item:hover .invite-xiaomei-btn, .paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item:focus .invite-interviewer-btn,
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item:focus .invite-candidate-btn,
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item:focus .invite-xiaomei-btn {
  color: #408cff;
}
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item:hover .invite-interviewer-btn.copied,
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item:hover .invite-candidate-btn.copied,
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item:hover .invite-xiaomei-btn.copied, .paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item:focus .invite-interviewer-btn.copied,
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item:focus .invite-candidate-btn.copied,
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item:focus .invite-xiaomei-btn.copied {
  color: #999;
  cursor: default;
}
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item .invite-interviewer,
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item .invite-candidate,
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item .invite-xiaomei {
  background: #222426;
  border-radius: 18px;
  padding: 8px 16px;
  justify-content: space-between;
  width: 100%;
}
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item .invite-interviewer-url,
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item .invite-candidate-url,
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item .invite-xiaomei-url {
  max-width: 196px;
  cursor: pointer;
}
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item .invite-interviewer-btn,
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item .invite-candidate-btn,
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item .invite-xiaomei-btn {
  color: #408cff;
  cursor: pointer;
}
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item .invite-interviewer-btn:hover,
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item .invite-candidate-btn:hover,
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item .invite-xiaomei-btn:hover {
  color: #3a7ee6;
}
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item .invite-interviewer-btn.copied,
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item .invite-candidate-btn.copied,
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item .invite-xiaomei-btn.copied {
  color: #999;
  cursor: default;
}
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .el-dropdown-menu__item .invite-xiaomei {
  border-radius: 19px;
}
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu .el-dropdown-separator {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  height: 1px;
  margin: 12px 0;
}
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu.el-popper[x-placement^=right] {
  margin-left: -1px;
}
.paas-pads-show-page .el-dropdown-menu.invite-el-dropdown-menu > .popper__arrow {
  display: none;
}
.paas-pads-show-page .pad-history-info {
  padding: 12px;
  width: 100%;
}
.paas-pads-show-page .pad-history-info .smb-icon-point-checked {
  color: #408cff;
}
.paas-pads-show-page .pad-history-info .item-bullet {
  margin-right: 14px;
  position: relative;
}
.paas-pads-show-page .pad-history-info .item-bullet::before {
  content: "";
  height: calc(100% - 20px);
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 8px;
  top: 20px;
}
.paas-pads-show-page .pad-history-info .item-bullet.bullet-only::before {
  height: 0;
}
.paas-pads-show-page .pad-history-info .item-content {
  flex: 1;
  margin-bottom: 18px;
}
.paas-pads-show-page .pad-history-info .item-content.current-pad .pad-round {
  color: rgb(64, 140, 255);
  mix-blend-mode: normal;
  background: rgba(64, 140, 255, 0.2);
}
.paas-pads-show-page .pad-history-info-forbidden, .paas-pads-show-page .pad-history-info-unloaded, .paas-pads-show-page .pad-history-info-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.paas-pads-show-page .pad-history-info-message, .paas-pads-show-page .pad-history-info-load-retry {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
}
.paas-pads-show-page .blank-info-group {
  display: flex;
  flex-direction: column;
}
.paas-pads-show-page .blank-info-icon {
  margin-bottom: 28px;
}
.paas-pads-show-page .blank-info-text {
  display: flex;
  flex-direction: row;
}
.paas-pads-show-page .pad-info-card .extral-evaluation {
  display: flex;
  align-items: flex-start;
}
.paas-pads-show-page .pad-info-card .extral-evaluation-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.paas-pads-show-page .pad-info-card .extral-evaluation-item {
  display: flex;
  flex-direction: row;
}
.paas-pads-show-page .pad-info-card .extral-evaluation-item .rate-content-text {
  width: 80px;
}
.paas-pads-show-page .pad-info-card .extral-evaluation .el-icon-star-on,
.paas-pads-show-page .pad-info-card .extral-evaluation .el-icon-star-off {
  transform: scale(1.15);
}
.paas-pads-show-page .pad-info-card .extral-evaluation .el-tag {
  margin-right: 50px;
}
.paas-pads-show-page .pad-info-card .extral-evaluation .el-tag.zero {
  background-color: #6d757d;
  border-color: #6d757d;
  color: #ffffff;
}
.paas-pads-show-page .pad-info-card .extral-evaluation .el-tag.one {
  background-color: #d9574c;
  border-color: transparent;
  color: #ffffff;
}
.paas-pads-show-page .pad-info-card .extral-evaluation .el-tag.two {
  background-color: #e5a82e;
  border-color: transparent;
  color: #fff;
}
.paas-pads-show-page .pad-info-card .extral-evaluation .el-tag.three {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: transparent;
  color: #ffffff;
}
.paas-pads-show-page .pad-info-card .extral-evaluation .el-tag.four {
  background-color: #e57239;
  border-color: transparent;
  color: #ffffff;
}
.paas-pads-show-page .pad-info-card .extral-evaluation .el-tag.five {
  background-color: #47b28f;
  border-color: #47b28f;
  color: #ffffff;
}
.paas-pads-show-page .pad-info-header {
  display: flex;
  margin-bottom: 8px;
}
.paas-pads-show-page .pad-info-header .pad-round {
  padding: 2px 8px;
  background: rgba(184, 190, 204, 0.2);
  border-radius: 12px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
}
.paas-pads-show-page .pad-info-header .pad-title,
.paas-pads-show-page .pad-info-header .pad-begin {
  margin: 0 12px;
}
.paas-pads-show-page .pad-info-header .link-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
.paas-pads-show-page .pad-info-header .link-group a[disabled] {
  color: #666666;
}
.paas-pads-show-page .pad-info-header .division {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1px;
}
.paas-pads-show-page .pad-info-header .division.division-margin {
  margin: 0 12px;
}
.paas-pads-show-page .pad-info-header .division .line {
  width: 0px;
  height: 8px;
  border: 1px solid #cccccc;
}
.paas-pads-show-page .pad-info-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px;
  gap: 8px;
  background: #505254;
  border-radius: 4px;
}
.paas-pads-show-page .pad-info-row {
  display: flex;
  align-items: flex-start;
}
.paas-pads-show-page .pad-info-row .row-title {
  display: flex;
  width: 80px;
  min-width: 80px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  align-items: center;
  color: #cccccc;
}
.paas-pads-show-page .pad-info-row .row-detail {
  display: flex;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  align-items: flex-start;
  color: #ffffff;
}
.paas-pads-show-page .pad-right-drawer {
  position: fixed;
  top: 0;
  bottom: 60px;
  width: 720px;
  background-color: #3a3c40;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  z-index: 1000;
  transition: right 0.5s ease-in-out, width 0.5s ease-in-out;
}
.paas-pads-show-page .pad-right-drawer.pad-right-drawer-expanded {
  width: 900px;
}
.paas-pads-show-page .pad-right-drawer.close-right {
  right: -900px;
}
.paas-pads-show-page .pad-right-drawer.open-right {
  right: 0 !important;
}
.paas-pads-show-page .pad-right-drawer-header {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  justify-content: space-between;
}
.paas-pads-show-page .pad-right-drawer-header-title {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.paas-pads-show-page .pad-right-drawer-header-title .expand-wrap {
  margin-right: 12px;
  cursor: pointer;
}
.paas-pads-show-page .pad-right-drawer-header-title .expand-wrap i.smb-icon {
  font-size: 16px;
  color: #ccc;
  font-weight: normal;
}
.paas-pads-show-page .pad-right-drawer-header-title .expand-wrap:hover i.smb-icon {
  color: #fff;
}
.paas-pads-show-page .pad-right-drawer-header-close {
  cursor: pointer;
  padding: 4px 6px;
  color: #4d4d4d;
}
.paas-pads-show-page .pad-right-drawer-header-close i.smb-icon {
  color: #999;
}
.paas-pads-show-page .pad-right-drawer-header-close:hover i.smb-icon {
  color: #fff;
}
.paas-pads-show-page .pad-right-drawer-body {
  height: 100%;
  overflow-y: auto;
}
.paas-pads-show-page .pad-right-drawer-footer {
  height: 44px;
  padding: 12px;
}
.paas-pads-show-page .pad-right-drawer-footer .btn .smb-icon {
  font-size: 20px;
  color: #fff;
}
.paas-pads-show-page .pad-right-drawer-footer .hidden {
  display: none;
}
.paas-pads-show-page .pad-right-drawer .el-loading-mask {
  background: #2e3033;
}
.paas-pads-show-page .pad-right-drawer .el-loading-mask .el-loading-spinner .circular {
  margin: 0 auto;
}
.paas-pads-show-page .playback-bar .video-player {
  position: fixed;
  top: calc(100vh - 300px);
  right: 20px;
  width: 384px;
  height: 216px;
  z-index: 1001;
  cursor: move;
  border-radius: 4px;
  overflow: hidden;
}
.paas-pads-show-page .playback-bar .video-player.large {
  cursor: default;
}
.paas-pads-show-page .playback-bar .video-player.large .player-container {
  position: fixed;
  top: 0;
  left: 0;
  margin: 5% 10%;
  width: 80%;
  height: auto;
  z-index: 1001;
}
.paas-pads-show-page .playback-bar .video-player.large .player-container .video-actions-panel {
  padding: 10px 15px;
}
.paas-pads-show-page .playback-bar .video-player.large .player-container .video-actions-panel .video-action {
  width: 24px;
  height: 24px;
}
.paas-pads-show-page .playback-bar .video-player.large .player-container .video-actions-panel .video-action:not(:first-child) {
  margin-left: 20px;
}
.paas-pads-show-page .playback-bar .video-player.large .player-container .video-actions-panel .video-action.maximum-icon img {
  padding: 3px;
}
.paas-pads-show-page .playback-bar .video-player.large .player-container .video-watermark {
  padding: 10px 20px;
  font-size: 20px;
}
.paas-pads-show-page .playback-bar .video-player.large .mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background: rgba(0, 0, 0, 0.3);
}
.paas-pads-show-page .playback-bar .video-player .player-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .playback-bar .video-player .player-container .no-video {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 14px;
  background: #000000;
  z-index: 1002;
}
.paas-pads-show-page .playback-bar .video-player .player-container .video-actions-panel {
  margin-bottom: -1px;
  padding: 5px 10px 10px;
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.3);
  border-top-right-radius: 4px;
}
.paas-pads-show-page .playback-bar .video-player .player-container .video-actions-panel .video-action {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.paas-pads-show-page .playback-bar .video-player .player-container .video-actions-panel .video-action:not(:first-child) {
  margin-left: 10px;
}
.paas-pads-show-page .playback-bar .video-player .player-container .video-actions-panel .video-action > img {
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .playback-bar .video-player .player-container .mute-audio-icon,
.paas-pads-show-page .playback-bar .video-player .player-container .minimum-icon,
.paas-pads-show-page .playback-bar .video-player .player-container .maximum-icon {
  width: 16px;
  height: 16px;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
}
.paas-pads-show-page .playback-bar .video-player .player-container .minimum-icon {
  display: none;
  left: 30px;
}
.paas-pads-show-page .playback-bar .video-player .player-container .video-watermark {
  padding: 5px 7px;
  position: absolute;
  right: 0;
  bottom: 0;
  color: #ffffff;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.3);
  border-top-left-radius: 5px;
  opacity: 0.5;
}
@media (max-width: 992px) {
  .paas-pads-show-page .playback-bar .video-player {
    position: fixed;
    max-width: 600px;
    width: 100%;
    top: calc(100vh - 300px);
    z-index: 1000;
    right: 0;
    height: auto;
    transition: width 0.3s ease-in-out;
  }
  .paas-pads-show-page .playback-bar .video-player .no-video {
    display: none;
  }
  .paas-pads-show-page .playback-bar .video-player .mask {
    display: none;
  }
  .paas-pads-show-page .playback-bar .video-player .player-container .video-actions-panel {
    padding: 10px 15px;
  }
  .paas-pads-show-page .playback-bar .video-player .player-container .video-actions-panel .video-action {
    width: 24px;
    height: 24px;
  }
  .paas-pads-show-page .playback-bar .video-player .player-container .video-actions-panel .video-action:not(:first-child) {
    margin-left: 20px;
  }
  .paas-pads-show-page .playback-bar .video-player .player-container .minimum-icon {
    display: block;
  }
  .paas-pads-show-page .playback-bar .video-player .player-container .minimum-icon img {
    padding: 3px;
  }
  .paas-pads-show-page .playback-bar .video-player .player-container .maximum-icon {
    display: none;
  }
  .paas-pads-show-page .playback-bar .video-player .player-container .video-watermark {
    font-size: 14px;
  }
  .paas-pads-show-page .playback-bar .video-player.small {
    width: 180px;
    transform: translateX(0);
  }
  .paas-pads-show-page .playback-bar .video-player.small .video-actions-panel {
    display: none;
  }
  .paas-pads-show-page .playback-bar .video-player.small .video-watermark {
    padding: 2px 3px;
    font-size: 12px;
  }
  .paas-pads-show-page .playback-bar .video-player.small .mask {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
  }
}
.paas-pads-show-page .playback-bar .progress-time {
  text-align: center;
  font-variant-numeric: tabular-nums;
  min-width: 85px;
  margin-left: -12px;
  text-align: center;
  font-size: 14px;
}
.paas-pads-show-page .playback-bar .progress-time.live-mode-hint {
  color: #408cff;
  position: relative;
  padding-left: 16px;
}
.paas-pads-show-page .playback-bar .progress-time.live-mode-hint:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #408cff;
}
.paas-pads-show-page .playback-bar .skip-idle-time {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.paas-pads-show-page .playback-bar .skip-idle-time > i {
  font-size: 20px;
  color: rgb(153, 153, 153);
}
.paas-pads-show-page .playback-bar .skip-idle-time.active > i {
  color: #408cff;
}
.paas-pads-show-page .playback-bar-action {
  justify-content: flex-end;
}
.paas-pads-show-page .playback-bar-action > * {
  margin-right: 12px;
}
.paas-pads-show-page .playback-bar-action .bar-action {
  cursor: pointer;
}
.paas-pads-show-page .playback-bar-action .bar-action:hover {
  opacity: 0.7;
}
.paas-pads-show-page .playback-bar-action .bar-action.disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.paas-pads-show-page .playback-bar-action .bar-action.disabled .i.smb-icon {
  color: #4d4d4d;
}
.paas-pads-show-page .playback-bar-action .bar-action > i {
  font-size: 20px;
}
.paas-pads-show-page .playback-bar-progress {
  flex: auto;
  min-width: 500px;
}
.paas-pads-show-page .playback-bar-progress .playback-progress {
  flex: 1;
}
.paas-pads-show-page .playback-bar-status {
  justify-content: flex-start;
}
.paas-pads-show-page .playback-bar-status > * {
  margin-left: 12px;
}
.paas-pads-show-page .playback-bar-status .playback-loading {
  color: #408cff;
}
.paas-pads-show-page .playback-bar-status .playback-loading svg {
  animation: roll 1s ease-in-out infinite;
}
@keyframes roll {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.paas-pads-show-page .playback-bar-status .progress-time {
  text-align: center;
}
.paas-pads-show-page .playback-bar-status .progress-time.live-mode-hint {
  color: #408cff;
  position: relative;
  padding-left: 16px;
}
.paas-pads-show-page .playback-bar-status .progress-time.live-mode-hint:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #408cff;
}
.paas-pads-show-page .playback-bar-status .live-mode-button {
  cursor: pointer;
  color: #408cff;
  padding: 3px 7px;
  border-radius: 4px;
  z-index: 20;
  background-color: #3a3c40;
  border: 1px solid rgba(255, 255, 255, 0.05);
  outline: none;
  line-height: 20px;
  font-size: 14px;
}
.paas-pads-show-page .playback-bar-status .live-mode-button:focus, .paas-pads-show-page .playback-bar-status .live-mode-button:active, .paas-pads-show-page .playback-bar-status .live-mode-button:hover {
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #3a7ee6;
}
.paas-pads-show-page .playback-bar-status .switch-speed-action {
  height: 28px;
  min-width: 45px;
}
.paas-pads-show-page .playback-bar-loading {
  color: #ccc;
  font-size: 14px;
}
.paas-pads-show-page .playback-bar-loading-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
@media (max-width: 992px) {
  .paas-pads-show-page .playback-bar .playback-progress-panel .playback-progress {
    margin: 0 10px;
  }
  .paas-pads-show-page .playback-bar .playback-progress-panel .progress-time {
    display: none;
  }
  .paas-pads-show-page .playback-bar .playback-speed {
    width: 30px;
  }
  .paas-pads-show-page .playback-bar .playback-speed .switch-speed-action span {
    display: none;
  }
}
.paas-pads-show-page .video-player {
  position: fixed;
  top: calc(100vh - 300px);
  right: 20px;
  width: 384px;
  height: 216px;
  z-index: 1001;
  cursor: move;
  border-radius: 4px;
  overflow: hidden;
}
.paas-pads-show-page .video-player.large {
  cursor: default;
}
.paas-pads-show-page .video-player.large .player-container {
  position: fixed;
  top: 0;
  left: 0;
  margin: 5% 10%;
  width: 80%;
  height: auto;
  z-index: 1001;
}
.paas-pads-show-page .video-player.large .player-container .video-actions-panel {
  padding: 10px 15px;
}
.paas-pads-show-page .video-player.large .player-container .video-actions-panel .video-action {
  width: 24px;
  height: 24px;
}
.paas-pads-show-page .video-player.large .player-container .video-actions-panel .video-action:not(:first-child) {
  margin-left: 20px;
}
.paas-pads-show-page .video-player.large .player-container .video-actions-panel .video-action.maximum-icon img {
  padding: 3px;
}
.paas-pads-show-page .video-player.large .player-container .video-watermark {
  padding: 10px 20px;
  font-size: 20px;
}
.paas-pads-show-page .video-player.large .mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background: rgba(0, 0, 0, 0.3);
}
.paas-pads-show-page .video-player .player-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .video-player .player-container .no-video {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 14px;
  background: #000000;
  z-index: 1002;
}
.paas-pads-show-page .video-player .player-container .video-actions-panel {
  margin-bottom: -1px;
  padding: 5px 10px 10px;
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.3);
  border-top-right-radius: 4px;
}
.paas-pads-show-page .video-player .player-container .video-actions-panel .video-action {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.paas-pads-show-page .video-player .player-container .video-actions-panel .video-action:not(:first-child) {
  margin-left: 10px;
}
.paas-pads-show-page .video-player .player-container .video-actions-panel .video-action > img {
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .video-player .player-container .mute-audio-icon,
.paas-pads-show-page .video-player .player-container .minimum-icon,
.paas-pads-show-page .video-player .player-container .maximum-icon {
  width: 16px;
  height: 16px;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
}
.paas-pads-show-page .video-player .player-container .minimum-icon {
  display: none;
  left: 30px;
}
.paas-pads-show-page .video-player .player-container .video-watermark {
  padding: 5px 7px;
  position: absolute;
  right: 0;
  bottom: 0;
  color: #ffffff;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.3);
  border-top-left-radius: 5px;
  opacity: 0.5;
}
@media (max-width: 992px) {
  .paas-pads-show-page .video-player {
    position: fixed;
    max-width: 600px;
    width: 100%;
    top: calc(100vh - 300px);
    z-index: 1000;
    right: 0;
    height: auto;
    transition: width 0.3s ease-in-out;
  }
  .paas-pads-show-page .video-player .no-video {
    display: none;
  }
  .paas-pads-show-page .video-player .mask {
    display: none;
  }
  .paas-pads-show-page .video-player .player-container .video-actions-panel {
    padding: 10px 15px;
  }
  .paas-pads-show-page .video-player .player-container .video-actions-panel .video-action {
    width: 24px;
    height: 24px;
  }
  .paas-pads-show-page .video-player .player-container .video-actions-panel .video-action:not(:first-child) {
    margin-left: 20px;
  }
  .paas-pads-show-page .video-player .player-container .minimum-icon {
    display: block;
  }
  .paas-pads-show-page .video-player .player-container .minimum-icon img {
    padding: 3px;
  }
  .paas-pads-show-page .video-player .player-container .maximum-icon {
    display: none;
  }
  .paas-pads-show-page .video-player .player-container .video-watermark {
    font-size: 14px;
  }
  .paas-pads-show-page .video-player.small {
    width: 180px;
    transform: translateX(0);
  }
  .paas-pads-show-page .video-player.small .video-actions-panel {
    display: none;
  }
  .paas-pads-show-page .video-player.small .video-watermark {
    padding: 2px 3px;
    font-size: 12px;
  }
  .paas-pads-show-page .video-player.small .mask {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
  }
}
.paas-pads-show-page .resume {
  position: fixed;
  top: 0;
  bottom: 60px;
  width: 720px;
  background-color: #3a3c40;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  z-index: 1000;
  transition: right 0.5s ease-in-out, width 0.5s ease-in-out;
}
.paas-pads-show-page .resume.resume-expanded {
  width: 900px;
}
.paas-pads-show-page .resume.close-right {
  right: -900px;
}
.paas-pads-show-page .resume.open-right {
  right: 0 !important;
}
.paas-pads-show-page .resume-header {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  justify-content: space-between;
}
.paas-pads-show-page .resume-header-title {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.paas-pads-show-page .resume-header-title .expand-wrap {
  margin-right: 12px;
  cursor: pointer;
}
.paas-pads-show-page .resume-header-title .expand-wrap i.smb-icon {
  font-size: 16px;
  color: #ccc;
  font-weight: normal;
}
.paas-pads-show-page .resume-header-title .expand-wrap:hover i.smb-icon {
  color: #fff;
}
.paas-pads-show-page .resume-header-close {
  cursor: pointer;
  padding: 4px 6px;
  color: #4d4d4d;
}
.paas-pads-show-page .resume-header-close i.smb-icon {
  color: #999;
}
.paas-pads-show-page .resume-header-close:hover i.smb-icon {
  color: #fff;
}
.paas-pads-show-page .resume-body {
  flex: auto;
  padding: 12px 12px 0;
  overflow: hidden;
  background-color: #3a3c40;
}
.paas-pads-show-page .resume-body.empty {
  background: #3a3c40;
  height: 100%;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow-y: auto;
}
.paas-pads-show-page .resume-body.empty .empty-wrap {
  flex-direction: column;
  height: 100%;
  min-height: 200px;
}
.paas-pads-show-page .resume-body.empty .empty-wrap .upload-resume-btn {
  line-height: 20px;
  font-weight: normal;
  padding: 7px 15px;
  background-color: rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page .resume-body.empty .empty-wrap .upload-resume-btn i.smb-icon {
  font-size: 14px;
}
.paas-pads-show-page .resume-body.empty .empty-wrap .upload-resume-limit-tip {
  line-height: 20px;
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}
.paas-pads-show-page .resume-body.dragover {
  filter: brightness(0.5);
}
.paas-pads-show-page .resume-body .resume-content {
  height: 100%;
  width: 100%;
  background: #fff;
}
.paas-pads-show-page .resume-body .resume-content #pdf-resume-preview {
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .resume-body .resume-content .word-wrap {
  width: 100%;
  height: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
}
.paas-pads-show-page .resume-body .resume-content .word-wrap #word-resume-preview {
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .resume-body .resume-content.overflow-y-auto {
  overflow-y: auto;
  background: unset;
}
.paas-pads-show-page .resume-body .resume-content.overflow-y-auto::-webkit-scrollbar {
  width: 8px;
}
.paas-pads-show-page .resume-footer {
  height: 44px;
  padding: 12px;
}
.paas-pads-show-page .resume-footer .btn .smb-icon {
  font-size: 20px;
  color: #fff;
}
.paas-pads-show-page .resume-footer .hidden {
  display: none;
}
.paas-pads-show-page .resume .el-loading-mask {
  background: #2e3033;
}
.paas-pads-show-page .resume .el-loading-mask .el-loading-spinner .circular {
  margin: 0 auto;
}
.paas-pads-show-page .questions-tree-component.el-tree {
  background: #3a3c40;
  color: #ccc;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content {
  padding: 8px 20px !important;
  background: #3a3c40;
  height: auto;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .el-checkbox {
  margin-bottom: 0;
  margin-right: 12px;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .el-checkbox .el-checkbox__input {
  margin-bottom: 1px;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .el-tree-node__expand-icon {
  display: none;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node.has-checkbox {
  width: calc(100% - 22px);
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node.node-level-1 .node-label {
  margin-left: 12px;
  font-family: "smb-icon";
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node.node-level-1 .node-label::before {
  content: "\e88f";
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node.node-level-2 .node-label {
  margin-left: 24px;
  font-family: "smb-icon";
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node.node-level-2 .node-label::before {
  content: "\e892";
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node.node-level-3 .node-label {
  margin-left: 36px;
  font-family: "smb-icon";
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node.node-level-3 .node-label::before {
  content: "\e890";
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node.node-level-4 .node-label {
  margin-left: 48px;
  font-family: "smb-icon";
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node.node-level-4 .node-label::before {
  content: "\e891";
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-label-outer-wrapper {
  max-width: 80%;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node.node-level-1 .node-label-outer-wrapper {
  position: relative;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node.node-level-1 .node-label-outer-wrapper::before {
  position: absolute;
  border-left: 1px #666 solid;
  height: 40px;
  content: "";
  top: -8px;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node.node-level-2 .node-label-outer-wrapper {
  position: relative;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node.node-level-2 .node-label-outer-wrapper::before {
  position: absolute;
  border-left: 1px #666 solid;
  height: 40px;
  content: "";
  top: -8px;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node.node-level-3 .node-label-outer-wrapper {
  position: relative;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node.node-level-3 .node-label-outer-wrapper::before {
  position: absolute;
  border-left: 1px #666 solid;
  height: 40px;
  content: "";
  top: -8px;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node.node-level-4 .node-label-outer-wrapper {
  position: relative;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node.node-level-4 .node-label-outer-wrapper::before {
  position: absolute;
  border-left: 1px #666 solid;
  height: 40px;
  content: "";
  top: -8px;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-label-inner-wrapper {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .pad-question--delivered {
  color: #666;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions {
  display: flex;
  align-items: center;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list {
  display: flex;
  align-items: center;
  opacity: 0;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .el-button {
  padding: 0;
  font-weight: 400;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .el-button.is-disabled {
  color: #4d4d4d;
  cursor: unset;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list-item.disabled {
  color: #999;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list-item:not(:first-child) {
  margin-left: 12px;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions i.smb-icon {
  font-size: 16px;
  color: #666;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions i.smb-icon.collected {
  color: #e5a82e;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions .actions-divide {
  height: 12px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 12px;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content:hover .node-actions-list {
  opacity: 1;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node.is-current .el-tree-node__content {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node.is-current.is-current-pad-question {
  position: relative;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node.is-current.is-current-pad-question .el-tree-node__content {
  color: #ccc;
  background-color: unset;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node.is-current.is-current-pad-question .el-tree-node__content:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node.is-current.is-current-pad-question > .el-tree-node__content {
  background-color: rgba(64, 140, 255, 0.4);
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node.is-current.is-current-pad-question > .el-tree-node__content:hover {
  background-color: rgba(64, 140, 255, 0.4);
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node.is-current.is-current-pad-question > .el-tree-node__content .node-label {
  color: #fff;
}
.paas-pads-show-page .questions-tree-component.el-tree .el-tree-node.is-current.is-current-pad-question::before {
  position: absolute;
  height: 36px;
  content: "";
  border: 1px solid #408cff;
}
.paas-pads-show-page .el-tree.hide-children-action-button .el-tree-node__children .el-checkbox__input {
  visibility: hidden;
}
.paas-pads-show-page .el-tree.hide-children-action-button .el-tree-node__children .node-actions {
  visibility: hidden;
}
.paas-pads-show-page .quick-deliver-button-wrapper {
  z-index: 1;
  position: fixed;
  left: 56px;
  bottom: 60px;
  border-radius: 20px;
  height: 50px;
  padding-top: 4px;
  padding-left: 12px;
  background-color: transparent;
}
.paas-pads-show-page .quick-deliver-button-wrapper button {
  width: 128px;
  font-size: 14px;
  background-color: #408cff;
}
.paas-pads-show-page .quick-deliver-button-wrapper button .smb-icon.smb-icon-arrow-drop-up {
  font-size: 12px;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 8px 0 8px 12px;
  top: 49px !important;
  padding: 16px;
  max-height: 600px;
  margin-bottom: 64px;
  width: 660px;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language.has-limited-language {
  overflow-y: auto;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .gap-4 {
  gap: 4px;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .gap-12 {
  gap: 12px;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item .language-type {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item .language-type::before {
  content: "";
  width: 2px;
  height: 12px;
  background-color: #408cff;
  margin-right: 8px;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item i.smb-icon-hot {
  color: #e57239;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body {
  max-height: 527px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: auto;
  justify-items: start;
  align-content: flex-start;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body.language-body {
  gap: 4px;
  grid-template-columns: unset;
  grid-auto-flow: column;
  grid-template-rows: repeat(auto-fit, minmax(24px, 1fr));
  grid-auto-rows: minmax(0, max-content);
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body.language-body li.el-dropdown-menu__item {
  margin-bottom: 0px !important;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body li.el-dropdown-menu__item {
  display: flex;
  padding: 4px 8px;
  align-items: center;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  width: 148px;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body li.el-dropdown-menu__item.limited-language {
  width: 152px;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body li.el-dropdown-menu__item .language-item {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body li.el-dropdown-menu__item .language-item-name {
  line-height: normal;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body li.el-dropdown-menu__item .language-item .smb-menu-tag {
  background-color: rgba(229, 114, 57, 0.2);
  color: #e57239;
  line-height: 17px;
  padding: 0 4px;
  font-size: 12px;
  border-radius: 4px 4px 4px 0px;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body li.el-dropdown-menu__item .language-item .smb-icon-box {
  color: #ccc !important;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body li.el-dropdown-menu__item .language-item .smb-icon-box .smb-icon {
  font-size: 14px;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body li.el-dropdown-menu__item .language-item .smb-icon-box .smb-icon:last-child {
  margin-right: 0px;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body li.el-dropdown-menu__item .language-item .smb-icon-box .smb-icon-debug {
  color: #3abf93;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body li.el-dropdown-menu__item .language-item .language-desc {
  font-size: 16px;
  display: none;
  opacity: 0.5;
  margin-right: 0px;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body li.el-dropdown-menu__item.selected {
  padding-left: 8px;
  color: #fff;
  background: rgba(64, 140, 255, 0.3) !important;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body li.el-dropdown-menu__item.selected::before {
  position: unset !important;
  width: 6px !important;
  height: 6px !important;
  margin-right: 8px;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body li.el-dropdown-menu__item:hover {
  border: 2px solid #408cff;
  background: rgba(64, 140, 255, 0.3);
  color: #fff;
  padding: 2px 6px;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body li.el-dropdown-menu__item:hover .smb-icon-box {
  display: none;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body li.el-dropdown-menu__item:hover .language-desc {
  display: flex;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body li.el-dropdown-menu__item:hover .language-desc:hover {
  opacity: 1;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .limited-language-item .switch-programming-language-item-body {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  height: auto;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .show-all-language-btn {
  font-size: 14px;
  color: #408cff;
  text-align: center;
  cursor: pointer;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .all-language-btn {
  font-size: 14px;
  color: #ccc;
  text-align: center;
  display: flex;
  align-items: center;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .all-language-btn::before {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background-color: #505254;
  margin-right: 0.5rem;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .all-language-btn::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background-color: #505254;
  margin-left: 0.5rem;
}
.paas-pads-show-page .el-dropdown-menu.switch-programming-language .all-language-body {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 12px;
}
@media screen and (max-width: 992px) {
  .paas-pads-show-page .el-dropdown-menu.switch-programming-language {
    width: 344px;
    overflow-y: auto;
    -webkit-overflow-scrolling: auto;
  }
  .paas-pads-show-page .el-dropdown-menu.switch-programming-language::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background: transparent;
    cursor: pointer;
  }
  .paas-pads-show-page .el-dropdown-menu.switch-programming-language::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
  }
  .paas-pads-show-page .el-dropdown-menu.switch-programming-language::-webkit-scrollbar-thumb:vertical {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
  }
  .paas-pads-show-page .el-dropdown-menu.switch-programming-language::-webkit-scrollbar-thumb:vertical:active {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
  }
  .paas-pads-show-page .el-dropdown-menu.switch-programming-language::-webkit-scrollbar-corner {
    background-color: transparent;
  }
  .paas-pads-show-page .el-dropdown-menu.switch-programming-language::-webkit-scrollbar-thumb:horizontal {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
  }
  .paas-pads-show-page .el-dropdown-menu.switch-programming-language::-webkit-scrollbar-thumb:horizontal:active {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
  }
  .paas-pads-show-page .el-dropdown-menu.switch-programming-language .switch-programming-language-item-body li.el-dropdown-menu__item.limited-language {
    width: 150px;
  }
  .paas-pads-show-page .el-dropdown-menu.switch-programming-language .limited-language-item .switch-programming-language-item-body {
    display: grid;
    grid-template-columns: auto auto;
    gap: 4px;
  }
  .paas-pads-show-page .el-dropdown-menu.switch-programming-language .limited-language-item .switch-programming-language-item-body li.el-dropdown-menu__item .limited-language {
    width: 150px;
  }
  .paas-pads-show-page .el-dropdown-menu.switch-programming-language .all-language-body {
    grid-template-columns: auto;
    gap: 20px;
  }
  .paas-pads-show-page .el-dropdown-menu.switch-programming-language .all-language-body .switch-programming-language-item-body {
    height: auto;
    grid-template-columns: auto auto;
  }
}
.paas-pads-show-page .select-language-button #without-specifying-select-language-dialog img.warning-subtract {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  margin-top: 3px;
}
.paas-pads-show-page .follower-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 12;
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
}
.paas-pads-show-page .follower-mask:hover .border-left-top,
.paas-pads-show-page .follower-mask:hover .border-right-top,
.paas-pads-show-page .follower-mask:hover .border-left-bottom,
.paas-pads-show-page .follower-mask:hover .border-right-bottom,
.paas-pads-show-page .follower-mask:hover .follower-mask-text {
  opacity: 1;
}
.paas-pads-show-page .follower-mask .border-style, .paas-pads-show-page .follower-mask .border-right-bottom, .paas-pads-show-page .follower-mask .border-left-bottom, .paas-pads-show-page .follower-mask .border-right-top, .paas-pads-show-page .follower-mask .border-left-top {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 3px solid transparent;
  border-color: inherit;
  transition: 0.15s;
  opacity: 0;
}
.paas-pads-show-page .follower-mask .border-left-top {
  left: 0;
  top: 0;
  border-right: none;
  border-bottom: none;
}
.paas-pads-show-page .follower-mask .border-right-top {
  right: 0;
  top: 0;
  border-bottom: none;
  border-left: none;
}
.paas-pads-show-page .follower-mask .border-left-bottom {
  left: 0;
  bottom: 0;
  border-top: none;
  border-right: none;
}
.paas-pads-show-page .follower-mask .border-right-bottom {
  right: 0;
  bottom: 0;
  border-top: none;
  border-left: none;
}
.paas-pads-show-page .follower-mask .follower-mask-text {
  position: absolute;
  width: 240px;
  height: 60px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.15s;
}
.paas-pads-show-page .follower-mask .follower-mask-text.hidden {
  opacity: 0;
}
.paas-pads-show-page .drag-wrap {
  position: fixed;
  height: fit-content;
  left: 40%;
  bottom: 80px;
  background: #3a3c40;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  z-index: 1200;
  min-width: 400px;
  min-height: 400px;
  max-height: 800px;
  max-width: 800px;
  visibility: hidden;
}
.paas-pads-show-page .drag-wrap.visible {
  flex-direction: column;
  visibility: visible;
}
.paas-pads-show-page .drag-wrap .drag-header {
  justify-content: stretch;
  width: 100%;
  height: 46px;
  padding: 0 12px;
  position: relative;
}
.paas-pads-show-page .drag-wrap .drag-header.hidden {
  display: none;
}
.paas-pads-show-page .drag-wrap .drag-header-title {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  height: 100%;
  flex: auto;
  cursor: move;
}
.paas-pads-show-page .drag-wrap .drag-header-close {
  outline: none;
  padding: 4px;
  background-color: transparent;
  border: unset;
}
.paas-pads-show-page .drag-wrap .drag-header-close i {
  font-size: 20px;
  color: #ccc;
}
.paas-pads-show-page .drag-wrap .drag-header-close:hover i {
  color: #fff;
}
.paas-pads-show-page .drag-wrap .drag-header::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .drag-wrap .drag-body {
  flex: auto;
  height: 1px;
  display: flex;
}
.paas-pads-show-page .drag-wrap .drag-body .drag-body-content-wrap {
  flex: auto;
  width: 1px;
}
.paas-pads-show-page .drag-wrap .drag-body .drag-body-content-wrap .drag-body-content {
  padding: 12px;
  height: 100%;
  width: 100%;
}
.paas-pads-show-page .file-tree-panel {
  background-color: #2e3033;
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .file-tree-panel button {
  background-color: transparent;
  background-image: none;
  outline: none;
  border: unset;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container {
  height: 100%;
  overflow: auto;
  background-color: #2e3033;
  -webkit-overflow-scrolling: auto;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
  cursor: pointer;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container::-webkit-scrollbar-thumb:vertical {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container::-webkit-scrollbar-thumb:vertical:active {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container::-webkit-scrollbar-corner {
  background-color: transparent;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container::-webkit-scrollbar-thumb:horizontal {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container::-webkit-scrollbar-thumb:horizontal:active {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .d42-tree-root {
  background-color: #2e3033;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .devicon-bash-plain.colored {
  color: #fff;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container svg {
  display: block;
  vertical-align: middle;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .folder-svg {
  margin: 0 0.5rem 0 0.2rem;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .file-svg {
  margin: 0 0.5rem 0 9px;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-arrow {
  display: none;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-arrow.rct-tree-item-arrow-hasChildren {
  display: block;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container ul.rct-tree-items-container {
  position: relative;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container ul.rct-tree-items-container .d42-file-tree-item .d42-create-box {
  background-color: #2e3033;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container ul.rct-tree-items-container .d42-file-tree-item .d42-create-box input {
  margin-left: unset !important;
  border-radius: 4px;
  background-color: #2e3033;
  border: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 20px;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container ul.rct-tree-items-container .d42-file-tree-item .d42-create-box input:focus, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container ul.rct-tree-items-container .d42-file-tree-item .d42-create-box input:active {
  border-color: #408cff;
  outline: 2px solid rgba(64, 140, 255, 0.2);
  caret-color: #408cff;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container ul.rct-tree-items-container .d42-file-tree-item {
  margin-top: 4px;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container ul.rct-tree-items-container > .d42-file-tree-item:nth-child(1) {
  margin-top: 0;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-title-container {
  height: 28px;
  line-height: 28px;
  position: relative;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-title-container .item-title {
  display: block;
  flex: 1;
  margin-right: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-title-container .d42-filetree-extra .d42-actions-container .d42-tooltip > *:hover {
  background-color: transparent;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-title-container .d42-filetree-extra .d42-popover-container .d42-expand-panel {
  background-color: transparent;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-title-container.is-modified-file-item .d42-actions-container .d42-action-item {
  color: #e5a82e;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-root {
  background: #2e3033;
  color: #fff;
  overflow: auto;
  min-height: 100%;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-button {
  padding: 8px 0;
  color: #ccc;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-button i.dao42__icon--more {
  color: #999;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-button i.dao42__icon--more:hover {
  color: #fff;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-toolbar {
  display: none;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-avatar-container {
  display: flex;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-avatar {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  background-size: cover;
  bottom: 10px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-avatar .rct-tree-item-avatar-img {
  max-width: 20px;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-li {
  font-size: 14px;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-li .rct-tree-item-title-container:hover {
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-li .rct-tree-item-title-container:hover .rct-tree-item-arrow {
  flex-shrink: 0;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-li .rct-tree-item-title-container:hover .rct-tree-item-toolbar {
  display: inline-block;
  border-radius: 8px;
  z-index: 111;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-li .rct-tree-item-title-container:hover .rct-tree-item-toolbar button {
  margin-right: 8px;
  border: unset;
  outline: none;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-li .rct-tree-item-title-container:hover .rct-tree-item-toolbar button i {
  color: #e9f3f0;
  font-size: 20px;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-li .rct-tree-item-title-container.show:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-li.d42-light-selected {
  background-color: transparent;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-item-li.d42-light-selected .rct-tree-item-title-container {
  background-color: transparent;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-root-focus {
  outline: none;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-root-focus .rct-tree-item-li-selected .rct-tree-item-title-container-selected {
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0;
  border: none;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rct-tree-root-focus .rct-tree-item-title-container-focused {
  border-color: transparent;
  position: relative;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container :not(.rct-tree-root-focus) .rct-tree-item-title-container-focused {
  border-color: transparent;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container :not(.rct-tree-root-focus) .rct-tree-item-li-selected .rct-tree-item-title-container-selected {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0;
  border: none;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .d42-root-toolbar {
  display: flex;
  color: #fff;
  padding-left: 12px;
  justify-content: space-between;
  align-items: center;
  height: 44px;
  background-color: #2e3033;
  position: relative;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .d42-root-toolbar strong {
  font-weight: 600;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .d42-root-toolbar:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .d42-root-toolbar-btns {
  display: flex;
  padding-right: 10px;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .d42-root-toolbar-btns :nth-child(3) {
  display: none;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .d42-root-toolbar-btns button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  position: relative;
  border: unset;
  outline: none;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .d42-root-toolbar-btns button.more-btn {
  padding-right: 0;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .d42-root-toolbar-btns button.more-btn .more {
  font-size: 20px;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .d42-root-toolbar-btns button.dir-btn {
  padding-right: 0;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .file-tree-wrap {
  height: calc(100% - 44px);
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rs-popover {
  padding: 0;
  margin-top: 0;
  background-color: transparent;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .rs-popover[class*=placement-bottom] > .rs-popover-arrow {
  display: none;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .expand-panel {
  transform: translateY(1px);
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .upload-loading {
  position: relative;
  right: 10px;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .create-file-folder {
  flex: 1;
  height: 30px;
  margin-right: 15px;
  background-color: transparent;
  color: #fff;
  padding: 5px;
}
.paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .create-file-folder::selection {
  height: 28px;
  padding: 5px 10px;
}
.paas-pads-show-page .file-tree-panel.is-mobile .follow-layout .d42-tree-root-container .d42-root-toolbar {
  padding-left: unset;
}
.paas-pads-show-page .file-tree-panel.is-mobile .follow-layout .d42-tree-root-container .d42-root-toolbar strong {
  visibility: hidden;
}
.paas-pads-show-page .file-tree-panel.is-mobile .follow-layout .d42-tree-root-container .d42-root-toolbar-btns {
  padding-right: unset;
}
.paas-pads-show-page .file-tree-panel.is-mobile .follow-layout .d42-tree-root-container .d42-root-toolbar-btns button {
  width: 40px;
  height: 40px;
}
.paas-pads-show-page .file-tree-panel.is-mobile .follow-layout .d42-tree-root-container .d42-root-toolbar-btns button i::before {
  font-size: 20px;
}
.paas-pads-show-page .file-tree-panel.is-pad .d42-tree-root .rct-tree-root {
  padding-bottom: 55px;
}
.paas-pads-show-page .d42-operation-panel {
  min-width: 100px;
  background-color: #3a3c40;
  padding: 4px;
  border-radius: 4px;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.3);
}
.paas-pads-show-page .d42-operation-panel .d42-panel-item {
  padding: 0px 8px;
  color: #ccc;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
  height: unset;
  list-style: none;
  line-height: 36px;
}
.paas-pads-show-page .d42-operation-panel .d42-panel-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}
.paas-pads-show-page .d42-operation-panel .d42-panel-item.delete {
  color: #d9574c;
}
.paas-pads-show-page .d42-operation-panel .d42-panel-item.delete:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #d9574c;
}
@keyframes circle-animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  15% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  85% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.25);
    opacity: 0;
  }
}
.paas-pads-show-page .online-header .name-capital {
  position: relative;
  color: #ccc;
  background: unset;
  border-color: #666;
  user-select: none;
  -webkit-user-select: none;
}
.paas-pads-show-page .online-header .name-capital.border-none {
  border: none;
}
.paas-pads-show-page .online-header .name-capital.cursor-pointer {
  cursor: pointer;
}
.paas-pads-show-page .online-header .name-capital:not(:first-child) {
  margin-left: 12px;
}
.paas-pads-show-page .online-header .name-capital .user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #666;
}
.paas-pads-show-page .online-header .name-capital img.user-avatar {
  filter: grayscale(1);
}
.paas-pads-show-page .online-header .name-capital.online {
  border-color: transparent;
  color: #fff;
}
.paas-pads-show-page .online-header .name-capital.online img.user-avatar {
  filter: unset;
}
.paas-pads-show-page .online-header .name-capital .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  opacity: 1;
  animation-name: circle-animation;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.paas-pads-show-page .online-header .name-capital .top-line {
  position: fixed;
  width: 20px;
  top: 0;
  border-top: 3px solid transparent;
}
.paas-pads-show-page .online-header .total {
  margin-left: 12px;
  color: #fff;
  font-size: 12px;
  user-select: none;
  white-space: nowrap;
}
.paas-pads-show-page .mobile-online-status .name-capital {
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  font-size: 12px;
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  background-color: #3a3c40;
  user-select: none;
  -webkit-user-select: none;
}
.paas-pads-show-page .mobile-online-status .name-capital .user-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #666;
}
.paas-pads-show-page .mobile-online-status .name-capital img.user-avatar {
  filter: grayscale(1);
}
.paas-pads-show-page .mobile-online-status .name-capital.online {
  border-color: #47b28f;
  color: #fff;
}
.paas-pads-show-page .mobile-online-status .name-capital.online img.user-avatar {
  filter: unset;
}
.paas-pads-show-page .mobile-online-status .name-capital:not(:first-child) {
  margin-left: 4px;
}
.paas-pads-show-page .mobile-online-status .total {
  margin-left: 4px;
  font-size: 12px;
  color: #fff;
}
.paas-pads-show-page .mobile-online-status .total i.smb-icon {
  color: #999;
}
.paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu {
  width: 200px;
  padding: 12px;
  border-radius: 8px;
  background-color: #3a3c40;
}
.paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu .menu-item-header,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu .menu-item-header {
  width: 100%;
  margin-bottom: 16px;
  font-weight: 400;
  line-height: 17px;
  font-size: 12px;
  color: #999;
  position: relative;
}
.paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu .menu-item-header:after,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu .menu-item-header:after {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -8px;
  width: calc(100% + 16px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu .el-dropdown-menu__item,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu .el-dropdown-menu__item {
  padding: unset;
  cursor: default;
  margin-top: 8px;
}
.paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu .el-dropdown-menu__item .record-item,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu .el-dropdown-menu__item .record-item {
  width: 100%;
  font-size: 12px;
  color: #fff;
}
.paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu .el-dropdown-menu__item .record-item .username,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu .el-dropdown-menu__item .record-item .username {
  flex: auto;
  text-align: left;
  padding: 0 8px;
  max-width: 120px;
}
.paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu .el-dropdown-menu__item .record-item .user-avatar,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu .el-dropdown-menu__item .record-item .user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #666;
}
.paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu .el-dropdown-menu__item .record-item .circle,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu .el-dropdown-menu__item .record-item .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  opacity: 1;
  animation-name: circle-animation;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu .el-dropdown-menu__item .record-item img.user-avatar,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu .el-dropdown-menu__item .record-item img.user-avatar {
  filter: grayscale(1);
}
.paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu .el-dropdown-menu__item .record-item .name-capital,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu .el-dropdown-menu__item .record-item .name-capital {
  border-color: #666;
  position: relative;
}
.paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu .el-dropdown-menu__item .record-item .name-capital.online img.user-avatar,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu .el-dropdown-menu__item .record-item .name-capital.online img.user-avatar {
  filter: unset;
}
.paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu .el-dropdown-menu__item .record-item .name-capital.border-none,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu .el-dropdown-menu__item .record-item .name-capital.border-none {
  border: none;
}
.paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu .el-dropdown-menu__item .record-item .online-status,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu .el-dropdown-menu__item .record-item .online-status {
  width: fit-content;
  white-space: nowrap;
}
.paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu .el-dropdown-menu__item .record-item .tag-mine span,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu .el-dropdown-menu__item .record-item .tag-mine span {
  background-color: rgba(64, 140, 255, 0.3);
  color: #408cff;
  padding: 4px;
  border-radius: 2px;
}
.paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu .el-dropdown-menu__item .record-item .visual-follow-entrance,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu .el-dropdown-menu__item .record-item .visual-follow-entrance {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 4px 8px;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  line-height: 1.5;
  cursor: pointer;
}
.paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu .el-dropdown-menu__item .record-item .visual-follow-entrance:hover,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu .el-dropdown-menu__item .record-item .visual-follow-entrance:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.paas-pads-show-page .el-dropdown-menu.online-status-dropdown-menu .el-dropdown-menu__item:hover,
.paas-pads-show-page .el-dropdown-menu.mobile-online-status-dropdown-menu .el-dropdown-menu__item:hover {
  background-color: unset;
  border-radius: unset;
}
.paas-pads-show-page .editor-preference {
  height: 100%;
  background: #2e3033;
}
.paas-pads-show-page .editor-preference-header {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page .editor-preference-body {
  padding: 0 12px 40px;
  height: calc(100% - 40px);
  overflow-y: auto;
}
.paas-pads-show-page .editor-preference-body .short-cut-tips {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.paas-pads-show-page .editor-preference-body .short-cut-tips .tips-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #ccc;
}
.paas-pads-show-page .editor-preference-body .short-cut-tips .tips-item {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #ccc;
  flex: none;
  order: 1;
  flex-grow: 0;
  margin: 8px 0px;
}
.paas-pads-show-page .editor-preference-body .auto-complete {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #222426;
  border-radius: 4px;
  margin-top: 20px;
}
.paas-pads-show-page .editor-preference-body .auto-complete > .el-form-item__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  color: #ccc;
}
.paas-pads-show-page .editor-preference-body .auto-complete > .el-form-item__content:before, .paas-pads-show-page .editor-preference-body .auto-complete > .el-form-item__content:after {
  display: none;
}
.paas-pads-show-page .editor-preference-body .lsp-diagnostic > .el-form-item__content:before, .paas-pads-show-page .editor-preference-body .lsp-diagnostic > .el-form-item__content:after {
  display: none;
}
.paas-pads-show-page .editor-preference-body .lsp-diagnostic > .el-form-item__content .lsp-diagnostic-item {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 0 12px;
  color: #ccc;
}
.paas-pads-show-page .d42-editor-header .d42-search-box .d42-search-input-wrapper input {
  color: #fff;
}
.paas-pads-show-page .d42-editor-header .d42-search-box .d42-search-filelist-wrapper ul {
  list-style: none;
  padding: 0;
}
.paas-pads-show-page .d42-editor-header .d42-file-header {
  margin-bottom: 0;
  padding: 8px;
  height: auto;
  background: unset;
}
.paas-pads-show-page .d42-editor-header .d42-file-header-item {
  background: #434547;
  border-radius: 4px;
  padding: 4px 8px;
  box-shadow: none;
  font-size: 14px;
  line-height: normal;
}
.paas-pads-show-page .d42-editor-header .d42-file-header-item-text {
  color: #fff;
  line-height: 1;
}
.paas-pads-show-page .d42-editor-header .d42-file-header-item .dao42__icon--close {
  color: #999;
}
.paas-pads-show-page .d42-editor-header .d42-file-header-item .dao42__icon--close:hover {
  color: #fff;
}
.paas-pads-show-page .d42-editor-header .d42-file-header-item.active, .paas-pads-show-page .d42-editor-header .d42-file-header-item.d42-active {
  background-color: rgba(255, 255, 255, 0.2);
}
.paas-pads-show-page .d42-editor-layout {
  background-color: #17181a;
}
.paas-pads-show-page .d42-editor-layout > * {
  background-color: #17181a;
}
.paas-pads-show-page .d42-editor-layout .d42-editor-header {
  background: #2e3033;
}
.paas-pads-show-page .d42-editor-layout .d42-editor-header .color-major-green.d42-editor-header__action--item-icon {
  color: #47b28f;
}
.paas-pads-show-page .d42-editor-layout .d42-editor-header .color-gray.d42-editor-header__action--item-icon {
  color: #666;
}
.paas-pads-show-page .d42-editor-layout .d42-editor-header .color-red.d42-editor-header__action--item-icon {
  color: #d9574c;
}
.paas-pads-show-page .d42-editor-layout .d42-editor-header .color-hint.d42-editor-header__action--item-icon {
  color: #999;
}
.paas-pads-show-page .d42-editor-layout .d42-editor-header .color-hint.d42-editor-header__action--item-icon.active, .paas-pads-show-page .d42-editor-layout .d42-editor-header .color-hint.d42-editor-header__action--item-icon:hover {
  color: #fff;
}
.paas-pads-show-page .d42-editor-layout .d42-editor-header .smb-icon.d42-editor-header__action--item-icon {
  margin-top: -2px;
}
.paas-pads-show-page .d42-editor-layout .d42-editor-header .d42-editor-header__action--item:not(:first-of-type)::before {
  top: 16px;
}
.paas-pads-show-page .d42-editor-layout .d42-editor-header .lsp-loading {
  width: 20px;
  height: 20px;
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/smb-loading-d1be4817a33bee1fdc9749a9303486b64e8b6ba3358f2f2960617517b2413773.svg);
  display: block;
  line-height: 18px;
  background-position: center;
  margin-top: -2px;
  -webkit-animation: spin-1 3s infinite linear;
}
@-webkit-keyframes spin-1 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spin-1 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.paas-pads-show-page .d42-editor-layout .d42-editor-header .d42-editor-header__action--item .d42-tooltip > div:first-child {
  display: flex;
  align-items: center;
  height: 44px;
}
.paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search {
  background-color: #2e3033;
  padding-bottom: 12px;
}
.paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search > input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #fff;
  height: 28px;
  margin-top: 8px;
  margin-bottom: unset;
}
.paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search > input:hover, .paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search > input:active, .paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search > input:focus {
  border-color: #408cff;
}
.paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search label {
  background-color: #2e3033;
  cursor: pointer;
  margin-bottom: unset;
  transform: translateY(8px);
  display: inline-flex;
  align-items: center;
}
.paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search label > input {
  border: unset;
  width: 16px;
  height: 16px;
  background-color: #2e3033;
  position: relative;
  appearance: auto;
  margin-right: 4px;
}
.paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search label > input::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #2e3033;
  width: 100%;
  border: 1px solid #999;
  border-radius: 4px;
  height: 16px;
  line-height: 16px;
}
.paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search label > input:checked::after {
  content: "✓";
  position: absolute;
  background-color: #408cff;
  border-radius: 4px;
  width: 100%;
  height: 16px;
  line-height: 16px;
  top: 0;
  left: 0;
  border: 1px solid #408cff;
  color: #fff;
  padding-left: 1px;
  font-size: 14px;
  line-height: 14px;
  transition: all 0.3s ease-in-out;
}
.paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search button:not([name=close]) {
  margin-top: 8px;
  margin-bottom: unset;
  height: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  outline: none !important;
}
.paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search button[name=close] {
  color: #999;
  font-size: 20px;
  padding: 0 8px;
  outline: none !important;
}
.paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search button[name=close]:hover {
  color: #fff;
}
.paas-pads-show-page .d42-code-editor-layout .d42-editor-container .cm-editor {
  background: #17181a;
}
.paas-pads-show-page .d42-code-editor-layout .d42-editor-container .cm-editor .cm-scroller {
  -webkit-overflow-scrolling: auto;
}
.paas-pads-show-page .d42-code-editor-layout .d42-editor-container .cm-editor .cm-scroller::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
  cursor: pointer;
}
.paas-pads-show-page .d42-code-editor-layout .d42-editor-container .cm-editor .cm-scroller::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .d42-code-editor-layout .d42-editor-container .cm-editor .cm-scroller::-webkit-scrollbar-thumb:vertical {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .d42-code-editor-layout .d42-editor-container .cm-editor .cm-scroller::-webkit-scrollbar-thumb:vertical:active {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .d42-code-editor-layout .d42-editor-container .cm-editor .cm-scroller::-webkit-scrollbar-corner {
  background-color: transparent;
}
.paas-pads-show-page .d42-code-editor-layout .d42-editor-container .cm-editor .cm-scroller::-webkit-scrollbar-thumb:horizontal {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .d42-code-editor-layout .d42-editor-container .cm-editor .cm-scroller::-webkit-scrollbar-thumb:horizontal:active {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .d42-code-editor-layout .d42-editor-container .cm-editor .cm-tooltip.d42-tooltip-answer-area-menu {
  background-color: #000;
}
.paas-pads-show-page .d42-code-editor-layout .d42-editor-container .cm-editor.cm-focused {
  outline: none;
}
.paas-pads-show-page .d42-code-editor-layout .d42-editor-container .cm-gutters {
  background: #17181a;
}
.paas-pads-show-page .d42-code-editor-layout .d42-editor-container #menu-list {
  margin-bottom: 0;
  padding: 6px 8px;
  height: auto;
}
.paas-pads-show-page .d42-code-editor-layout .d42-editor-container #menu-list li {
  background: #434547;
  border-radius: 4px;
  padding: 6px 8px;
  box-shadow: none;
  font-size: 14px;
}
.paas-pads-show-page .d42-code-editor-layout .d42-editor-container #menu-list li .close.tree-closer.absolute {
  position: relative;
  right: 0;
}
.paas-pads-show-page .dao-contextMenu.rc-dropdown .rc-menu {
  background: #3a3c40;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4px;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.3);
}
.paas-pads-show-page .dao-contextMenu.rc-dropdown .rc-menu-item {
  color: #ccc;
  padding: 0 8px;
  background: transparent;
  cursor: default;
}
.paas-pads-show-page .dao-contextMenu.rc-dropdown .rc-menu-item:hover, .paas-pads-show-page .dao-contextMenu.rc-dropdown .rc-menu-item:focus {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: #ccc;
}
.paas-pads-show-page .follow-layout[name=debug] > * {
  background-color: #2e3033;
}
.paas-pads-show-page .follow-layout .debug-info-container .debug-stack-container {
  margin: 0;
  padding: 0;
  list-style: none;
}
.paas-pads-show-page .follow-layout .debug-info-container .debug-stack-container .d42-debug-stack-item .d42-debug-stack-key {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.paas-pads-show-page .d42-browser-container .d42-browser-nav {
  background-color: #2e3033;
}
.paas-pads-show-page .d42-browser-container .d42-browser-nav .d42-browser-refresh-wrapper .dao42__icon--refresh:hover {
  background-color: unset;
  color: #fff;
}
.paas-pads-show-page .d42-browser-container .d42-browser-nav .d42-browser-refresh-wrapper .d42-refresh-select-popover .d42-popover-container .d42-refresh-select > span:first-child:hover {
  color: #fff;
}
.paas-pads-show-page .d42-browser-container .d42-browser-nav .devtool-btn {
  font-size: 14px;
  line-height: 20px;
  padding: 4px 6px;
}
.paas-pads-show-page .d42-browser-container .d42-browser-nav .devtool-btn:hover {
  color: #fff;
}
.paas-pads-show-page .d42-browser-container .d42-browser-body .d42-stop-mask {
  background-color: #666;
  padding: 20px;
  font-size: 14px;
}
.paas-pads-show-page .d42-browser-container .d42-browser-body #dao-browserIframe {
  display: block;
}
.paas-pads-show-page .d42-browser-container .d42-mask .d42-expaned-wrapper {
  background-color: #3a3c40;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
.paas-pads-show-page .d42-browser-container .d42-mask .d42-expaned-wrapper .d42-refresh-select-items {
  background-color: #3a3c40;
  padding: 4px;
  border-radius: 4px;
}
.paas-pads-show-page .d42-browser-container .d42-mask .d42-expaned-wrapper .d42-refresh-select-items .d42-refresh-select-item {
  background-color: transparent;
  border-radius: 2px;
  color: #ccc;
}
.paas-pads-show-page .d42-browser-container .d42-mask .d42-expaned-wrapper .d42-refresh-select-items .d42-refresh-select-item.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.paas-pads-show-page .d42-browser-container .d42-mask .d42-expaned-wrapper .d42-refresh-select-items .d42-refresh-select-item:not(.active):hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.paas-pads-show-page .d42-console-container,
.paas-pads-show-page .d42-shell-container {
  width: 1;
}
.paas-pads-show-page .d42-console-container .terminal,
.paas-pads-show-page .d42-shell-container .terminal {
  padding: 8px 12px 8px 16px;
}
.paas-pads-show-page .d42-console-container .terminal .xterm-viewport,
.paas-pads-show-page .d42-shell-container .terminal .xterm-viewport {
  width: 100% !important;
  -webkit-overflow-scrolling: auto;
}
.paas-pads-show-page .d42-console-container .terminal .xterm-viewport::-webkit-scrollbar,
.paas-pads-show-page .d42-shell-container .terminal .xterm-viewport::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
  cursor: pointer;
}
.paas-pads-show-page .d42-console-container .terminal .xterm-viewport::-webkit-scrollbar-thumb,
.paas-pads-show-page .d42-shell-container .terminal .xterm-viewport::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .d42-console-container .terminal .xterm-viewport::-webkit-scrollbar-thumb:vertical,
.paas-pads-show-page .d42-shell-container .terminal .xterm-viewport::-webkit-scrollbar-thumb:vertical {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .d42-console-container .terminal .xterm-viewport::-webkit-scrollbar-thumb:vertical:active,
.paas-pads-show-page .d42-shell-container .terminal .xterm-viewport::-webkit-scrollbar-thumb:vertical:active {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .d42-console-container .terminal .xterm-viewport::-webkit-scrollbar-corner,
.paas-pads-show-page .d42-shell-container .terminal .xterm-viewport::-webkit-scrollbar-corner {
  background-color: transparent;
}
.paas-pads-show-page .d42-console-container .terminal .xterm-viewport::-webkit-scrollbar-thumb:horizontal,
.paas-pads-show-page .d42-shell-container .terminal .xterm-viewport::-webkit-scrollbar-thumb:horizontal {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .d42-console-container .terminal .xterm-viewport::-webkit-scrollbar-thumb:horizontal:active,
.paas-pads-show-page .d42-shell-container .terminal .xterm-viewport::-webkit-scrollbar-thumb:horizontal:active {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .d42-modal-body {
  border-radius: 8px !important;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.3);
  padding: 0 !important;
  background: #3a3c40 !important;
  width: 420px !important;
}
.paas-pads-show-page .d42-modal-title {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
}
.paas-pads-show-page .d42-modal-content {
  padding: 20px !important;
}
.paas-pads-show-page .d42-modal-content > div {
  color: #fff;
}
.paas-pads-show-page .d42-modal-footer {
  padding: 0 20px 20px 20px;
}
.paas-pads-show-page .d42-modal-footer .d42-btn > button {
  padding: 0;
  color: #fff;
}
.paas-pads-show-page .d42-modal .d42-mask {
  background-color: #000 !important;
  opacity: 0.5;
}
@media (max-width: 576px) {
  .paas-pads-show-page .d42-modal .d42-modal-body {
    width: 343px !important;
  }
}
.paas-pads-show-page .d42-markdown-preview-container {
  background-color: #2e3033;
}
.paas-pads-show-page .rc-image-preview-root .rc-image-preview-mask {
  background-color: rgba(0, 0, 0, 0.7);
}
.paas-pads-show-page .rc-image-preview-operations-wrapper .rc-image-preview-footer .d42-image-preivew-actions {
  background-color: #606266;
  width: fit-content !important;
  height: 44px;
  border-radius: 22px;
  padding: 0 23px;
}
.paas-pads-show-page .rc-image-preview-operations-wrapper .rc-image-preview-footer .d42-image-preivew-actions > div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paas-pads-show-page .rc-image-preview-operations-wrapper .rc-image-preview-footer .d42-image-preivew-actions svg {
  width: 20px;
  height: 20px;
}
.paas-pads-show-page .pad-question-center {
  background-color: #2e3033;
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .pad-question-center-header {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page .pad-question-center-body {
  padding: 0;
}
.paas-pads-show-page .pad-question-center-body .el-tabs {
  height: 100%;
}
.paas-pads-show-page .pad-question-center-body .el-tabs__header {
  display: flex;
  margin: 0;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .pad-question-center-body .el-tabs__content {
  height: calc(100% - 48px);
}
.paas-pads-show-page .pad-question-center-body .el-tabs__content .el-tab-pane {
  height: 100%;
}
.paas-pads-show-page .pad-question-center-body .el-tabs__content .el-tab-pane .el-tree.questions-tree-component {
  background-color: #2e3033;
}
.paas-pads-show-page .pad-question-center-body .el-tabs__content .el-tab-pane .el-tree.questions-tree-component .el-tree-node__content {
  background-color: #2e3033;
}
.paas-pads-show-page .pad-question-center-body .el-tabs__content .el-tab-pane .el-tree.questions-tree-component .el-tree-node__content:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .pad-question-center-body .el-tabs__content .el-tab-pane .el-tree.questions-tree-component .el-tree-node__content:hover .node-actions-list {
  opacity: 1;
}
.paas-pads-show-page .pad-question-center-body .el-tabs__content .el-tab-pane .el-tree.questions-tree-component .el-tree-node.is-current .el-tree-node__content {
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .pad-question-center-body .el-tabs__content .el-tab-pane .el-tree.questions-tree-component .el-tree-node.is-current.is-current-pad-question {
  position: relative;
}
.paas-pads-show-page .pad-question-center-body .el-tabs__content .el-tab-pane .el-tree.questions-tree-component .el-tree-node.is-current.is-current-pad-question .el-tree-node__content {
  color: #ccc;
  background-color: unset;
}
.paas-pads-show-page .pad-question-center-body .el-tabs__content .el-tab-pane .el-tree.questions-tree-component .el-tree-node.is-current.is-current-pad-question .el-tree-node__content:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .pad-question-center-body .el-tabs__content .el-tab-pane .el-tree.questions-tree-component .el-tree-node.is-current.is-current-pad-question > .el-tree-node__content {
  background-color: rgba(64, 140, 255, 0.4);
}
.paas-pads-show-page .pad-question-center-body .el-tabs__content .el-tab-pane .el-tree.questions-tree-component .el-tree-node.is-current.is-current-pad-question > .el-tree-node__content:hover {
  background-color: rgba(64, 140, 255, 0.4);
}
.paas-pads-show-page .pad-question-center-body .el-tabs__content .el-tab-pane .el-tree.questions-tree-component .el-tree-node.is-current.is-current-pad-question > .el-tree-node__content .node-label {
  color: #fff;
}
.paas-pads-show-page .pad-question-center-body .el-tabs__content .el-tab-pane .el-tree.questions-tree-component .el-tree-node.is-current.is-current-pad-question::before {
  position: absolute;
  height: 36px;
  content: "";
  border: 1px solid #408cff;
}
.paas-pads-show-page .pad-question-center-body .el-tabs__nav-wrap::after {
  content: none;
}
.paas-pads-show-page .pad-question-center-body .el-tabs__nav-wrap .el-tabs__nav-scroll {
  padding-bottom: 8px;
}
.paas-pads-show-page .pad-question-center-body .el-tabs__nav-wrap .el-tabs__active-bar {
  display: none;
}
.paas-pads-show-page .pad-question-center-body .el-tabs__nav-wrap .el-tabs__item {
  color: #fff;
  opacity: 0.45;
  font-size: 14px;
  padding: 0;
  height: auto;
  line-height: unset;
  font-weight: 400;
  margin-right: 20px;
}
.paas-pads-show-page .pad-question-center-body .el-tabs__nav-wrap .el-tabs__item.is-active {
  opacity: 1;
  font-weight: 600;
}
.paas-pads-show-page .pad-question-center-body .el-tabs__nav-wrap .el-tabs__item.is-active::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  bottom: -8px;
  left: 50%;
  background: #cc3f33;
  border-radius: 2px;
  transform: translate(-50%, 0);
}
.paas-pads-show-page .pad-question-center-footer {
  padding: 0;
}
.paas-pads-show-page .pad-question-center-footer .el-button-group {
  width: 100%;
}
.paas-pads-show-page .pad-question-center-footer .el-button-group .el-button:first-child {
  border-left: unset;
}
.paas-pads-show-page .pad-question-center-footer .el-button-group .el-button:last-child {
  border-right: unset;
}
.paas-pads-show-page .pad-question-center-footer .el-button-group .el-button {
  width: 50%;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-bottom: unset;
  border-radius: unset;
  background-color: unset;
  color: #ccc;
}
.paas-pads-show-page .pad-question-center-footer .el-button-group .el-button:focus {
  outline: none;
}
.paas-pads-show-page .pad-question-center-footer .el-button-group .el-button:hover {
  background-color: #383a3d;
  color: #fff;
}
.paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .el-tab-pane__body, .paas-pads-show-page .pad-question-center-body .pad-question-center .el-tabs__content .el-tab-pane__body {
  height: 100%;
  font-size: 14px;
  overflow-y: auto;
}
.paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .el-tab-pane__body--no-data, .paas-pads-show-page .pad-question-center-body .pad-question-center .el-tabs__content .el-tab-pane__body--no-data {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .el-tab-pane__body--no-data .empty-list__icon-wrapper, .paas-pads-show-page .pad-question-center-body .pad-question-center .el-tabs__content .el-tab-pane__body--no-data .empty-list__icon-wrapper {
  margin-bottom: 18px;
}
.paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .el-tab-pane__body--no-data .empty-list__icon-wrapper .empty-list__icon, .paas-pads-show-page .pad-question-center-body .pad-question-center .el-tabs__content .el-tab-pane__body--no-data .empty-list__icon-wrapper .empty-list__icon {
  width: 90px;
}
.paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .el-tab-pane__body--no-data .empty-list__desc-wrapper .plain-text, .paas-pads-show-page .pad-question-center-body .pad-question-center .el-tabs__content .el-tab-pane__body--no-data .empty-list__desc-wrapper .plain-text {
  margin: 0 5px;
}
.paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .new-pad-question-form, .paas-pads-show-page .pad-question-center-body .pad-question-center .el-tabs__content .new-pad-question-form {
  padding: 10px;
}
.paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .new-pad-question-form input, .paas-pads-show-page .pad-question-center-body .pad-question-center .el-tabs__content .new-pad-question-form input {
  width: 100%;
  padding: 8px;
  border: 1px solid #408cff;
  border-radius: 4px;
  background: #222426;
  color: #fff;
}
.paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .new-pad-question-form input:focus::placeholder, .paas-pads-show-page .pad-question-center-body .pad-question-center .el-tabs__content .new-pad-question-form input:focus::placeholder {
  color: #666;
}
.paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .el-tab-pane .el-loading-mask, .paas-pads-show-page .pad-question-center-body .el-tabs__content .pad-question-center .el-tab-pane .el-loading-mask {
  background: rgba(46, 48, 51, 0.6);
}
.paas-pads-show-page .paas-question-panel {
  height: 100%;
  position: relative;
  overflow: auto;
  /* 面试 笔试 题目预览 Markdown 样式覆盖 */
}
.paas-pads-show-page .paas-question-panel-header {
  justify-content: space-between;
  height: 44px;
  padding: 0 0.75rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .paas-question-panel-header .panel-title {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.paas-pads-show-page .paas-question-panel-header .panel-pin {
  cursor: pointer;
  color: #999;
  padding: 0.25rem 0.75rem;
  line-height: 20px;
  border-radius: 0.25rem;
  background: #3a3c40;
}
.paas-pads-show-page .paas-question-panel-header .panel-pin:hover, .paas-pads-show-page .paas-question-panel-header .panel-pin.is-pinned {
  color: #fff;
}
.paas-pads-show-page .paas-question-panel-header .panel-reset-question-btn {
  padding: 0.5rem;
}
.paas-pads-show-page .paas-question-panel-header .panel-reset-question-btn i.smb-icon {
  color: #999;
}
.paas-pads-show-page .paas-question-panel-header .panel-reset-question-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.25rem;
}
.paas-pads-show-page .paas-question-panel-header .panel-reset-question-btn:hover i.smb-icon {
  color: #fff;
}
.paas-pads-show-page .paas-question-panel-content {
  min-height: 50%;
  padding: 0.75rem;
  overflow: auto;
}
.paas-pads-show-page .paas-question-panel-content .el-collapse-item__header {
  height: 38px;
}
.paas-pads-show-page .paas-question-panel-content .el-collapse-item__header.focusing:focus:not(:hover) {
  color: #fff;
}
.paas-pads-show-page .paas-question-panel-content .rate-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  color: #ccc;
  min-height: 48px;
}
.paas-pads-show-page .paas-question-panel-content .rate-content .disabled-rate .el-rate__icon.el-icon-star-on {
  cursor: not-allowed;
}
.paas-pads-show-page .paas-question-panel-content .rate-content .el-rate {
  margin-right: 0.75rem;
}
.paas-pads-show-page .paas-question-panel-content .rate-content .el-rate .el-rate__item .el-rate__icon {
  margin-right: 3px;
}
.paas-pads-show-page .paas-question-panel-content .rate-content .el-tag.zero {
  background-color: #6d757d;
  border-color: transparent;
  color: #ffffff;
}
.paas-pads-show-page .paas-question-panel-content .rate-content .el-tag.one {
  background-color: #d9574c;
  border-color: transparent;
  color: #ffffff;
}
.paas-pads-show-page .paas-question-panel-content .rate-content .el-tag.two {
  background-color: #e5a82e;
  border-color: transparent;
  color: #fff;
}
.paas-pads-show-page .paas-question-panel-content .rate-content .el-tag.three {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: transparent;
  color: #ffffff;
}
.paas-pads-show-page .paas-question-panel-content .rate-content .el-tag.four {
  background-color: #e57239;
  border-color: transparent;
  color: #ffffff;
}
.paas-pads-show-page .paas-question-panel-content .rate-content .el-tag.five {
  background-color: #47b28f;
  border-color: #47b28f;
  color: #ffffff;
}
.paas-pads-show-page .paas-question-panel-content .rate-content .user-avatar {
  max-width: 24px;
  max-height: 24px;
  border-radius: 50%;
  cursor: default;
}
.paas-pads-show-page .paas-question-panel-content .question-guide-title {
  font-size: 14px;
  font-weight: 400;
  order: 1;
  flex: auto;
  padding-left: 0.25rem;
}
.paas-pads-show-page .paas-question-panel-content .question-guide .smb-icon-idea {
  color: #408cff;
}
.paas-pads-show-page .paas-question-panel-content .question-guide-item-content {
  color: #ccc;
}
.paas-pads-show-page .paas-question-panel-content .question-guide-item-link {
  width: fit-content;
}
.paas-pads-show-page .paas-question-panel-content .question-guide-item-saperator {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page .paas-question-panel-content.select-unavailable {
  user-select: none;
}
.paas-pads-show-page .paas-question-panel-content .graph-wrapper {
  width: 100%;
  height: 200px;
  margin-top: 20px;
  position: relative;
  cursor: zoom-in;
}
.paas-pads-show-page .paas-question-panel-content .graph-wrapper .graph {
  height: 100%;
  width: 100%;
}
.paas-pads-show-page .paas-question-panel-content .graph-wrapper .graph > svg {
  width: 100% !important;
  height: 100% !important;
  border-radius: 8px;
}
.paas-pads-show-page .paas-question-panel-content .graph-wrapper .scale-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 15px;
  color: #ffffff;
  background-color: rgba(26, 26, 26, 0.4);
  border-radius: 8px 0 8px 0;
  padding: 8px;
}
.paas-pads-show-page .paas-question-panel #reset-question-dialog .dialog-body {
  display: flex;
  word-break: break-word;
}
.paas-pads-show-page .paas-question-panel #reset-question-dialog .dialog-body .smb-icon-warning-subtract {
  margin-right: 0.5rem;
  color: #e57239;
  font-size: 20px;
  display: block;
}
.paas-pads-show-page .paas-question-panel #reset-question-dialog .dialog-body span {
  font-size: 14px;
}
.paas-pads-show-page .paas-question-panel .question-title {
  display: block;
  font-size: 16px;
  color: #f5f7fa;
  font-weight: 600;
  padding: 0.75rem;
}
.paas-pads-show-page .paas-question-panel .answer-area-guide {
  display: block;
  font-size: 14px;
  margin-bottom: 0.75rem;
}
.paas-pads-show-page .paas-question-panel .markdown-question {
  max-height: unset;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 0.75rem;
}
.paas-pads-show-page .paas-question-panel .markdown-question ul,
.paas-pads-show-page .paas-question-panel .markdown-question ol,
.paas-pads-show-page .paas-question-panel .markdown-question p {
  color: #cccccc;
}
.paas-pads-show-page .paas-question-panel.is-pad {
  /* 面试官 / 候选人引导材料 */
}
.paas-pads-show-page .paas-question-panel.is-pad .paas-question-panel-header {
  font-size: 14px;
  font-weight: 600;
}
.paas-pads-show-page .paas-question-panel.is-pad .paas-question-panel-header .paas-question-panel-header__title-icon {
  margin-right: 0.5rem;
  color: #408cff;
}
.paas-pads-show-page .paas-question-panel.is-pad .paas-question-panel-content {
  padding-bottom: 55px;
}
.paas-pads-show-page .paas-question-panel.is-pad .paas-question-panel-content__title {
  font-size: 14px;
  margin-bottom: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ccd1d9;
  padding: 0.75rem;
  border-radius: 0.5rem;
}
.paas-pads-show-page .paas-question-panel.is-pad .paas-question-panel-content__title .title {
  color: #f5f7fa;
  font-size: 1rem;
  font-weight: 600;
}
.paas-pads-show-page .paas-question-panel.is-pad .paas-question-panel-content__title .title::before {
  content: "#";
  color: #4488ff;
  margin-right: 0.5em;
}
.paas-pads-show-page .paas-question-panel.is-pad .paas-question-panel-content__description {
  margin-bottom: 0.75rem;
  color: #4488ff;
  text-align: center;
  display: flex;
  align-items: center;
}
.paas-pads-show-page .paas-question-panel.is-pad .paas-question-panel-content__description span {
  margin: 0 0 0 0.25rem;
}
.paas-pads-show-page .paas-question-panel.is-pad .paas-question-panel-content__description::before {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background-color: #505254;
  margin-right: 0.5rem;
}
.paas-pads-show-page .paas-question-panel.is-pad .paas-question-panel-content__description::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background-color: #505254;
  margin-left: 0.5rem;
}
.paas-pads-show-page .aside-menu-item-wrap {
  width: 100%;
}
.paas-pads-show-page .aside-menu-item-wrap .aside-menu-item {
  width: 46px;
  height: 46px;
  user-select: none;
  border-radius: 4px;
  color: #999;
  flex-direction: column;
}
.paas-pads-show-page .aside-menu-item-wrap .aside-menu-item .aside-menu-icon {
  display: none;
  margin-top: -10px;
  width: 40px;
  height: 40px;
  min-height: 40px;
  transform: scale(0.5);
  transform-origin: center center;
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/paas-aside-menu-affbf229c85eef242b54a0b70872d237d2d2d34fd82bc7bdf0247294228c7931.png);
}
.paas-pads-show-page .aside-menu-item-wrap .aside-menu-item .aside-menu-icon.default {
  display: block;
  background-position: -40px -40px;
}
.paas-pads-show-page .aside-menu-item-wrap .aside-menu-item canvas {
  display: none;
  margin-top: -12px;
}
.paas-pads-show-page .aside-menu-item-wrap .aside-menu-item canvas.default {
  display: block;
}
.paas-pads-show-page .aside-menu-item-wrap .aside-menu-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.1s ease-in-out;
}
.paas-pads-show-page .aside-menu-item-wrap .aside-menu-item:hover .aside-menu-icon.mouse-in,
.paas-pads-show-page .aside-menu-item-wrap .aside-menu-item:hover canvas.mouse-in {
  display: block;
}
.paas-pads-show-page .aside-menu-item-wrap .aside-menu-item:hover canvas:not(.mouse-in) {
  display: none;
}
.paas-pads-show-page .aside-menu-item-wrap:hover .aside-menu-item {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: all 0.1s ease-in-out;
}
.paas-pads-show-page .aside-menu-item-wrap:hover .aside-menu-item .aside-menu-icon.mouse-in,
.paas-pads-show-page .aside-menu-item-wrap:hover .aside-menu-item canvas.mouse-in {
  display: block;
}
.paas-pads-show-page .aside-menu-item-wrap:hover .aside-menu-item .aside-menu-icon:not(.mouse-in),
.paas-pads-show-page .aside-menu-item-wrap:hover .aside-menu-item img:not(.mouse-in),
.paas-pads-show-page .aside-menu-item-wrap:hover .aside-menu-item canvas:not(.mouse-in) {
  display: none;
}
.paas-pads-show-page .aside-menu-item-wrap.actived .aside-menu-item {
  background-color: #222426;
  color: #fff;
  transition: all 0.1s ease-in-out;
}
.paas-pads-show-page .aside-menu-item-wrap.actived .aside-menu-item .aside-menu-icon.active,
.paas-pads-show-page .aside-menu-item-wrap.actived .aside-menu-item canvas.active {
  display: block;
}
.paas-pads-show-page .aside-menu-item-wrap.actived .aside-menu-item .aside-menu-icon:not(.active),
.paas-pads-show-page .aside-menu-item-wrap.actived .aside-menu-item canvas:not(.active) {
  display: none;
}
.paas-pads-show-page .aside-menu-item-wrap.aside-top-sticky-menu--item {
  height: 44px;
  border-bottom: 1px solid #000;
  transition: all 0.1s ease-in-out;
  position: relative;
}
.paas-pads-show-page .aside-menu-item-wrap.aside-top-sticky-menu--item.actived {
  position: relative;
}
.paas-pads-show-page .aside-menu-item-wrap.aside-top-sticky-menu--item.actived .aside-menu-item {
  background-color: #222426;
}
.paas-pads-show-page .aside-menu-item-wrap.aside-top-sticky-menu--item.actived::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 3px;
  height: calc(100% - 2px);
  background-color: #b8392e;
}
.paas-pads-show-page .aside-menu-item-wrap.aside-top-sticky-menu--item .aside-menu-item {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: unset;
}
.paas-pads-show-page .aside-menu-item-wrap.aside-top-sticky-menu--item .aside-menu-item .aside-menu-icon {
  margin-top: unset;
}
.paas-pads-show-page .paas-mysql-table-description.markdown-question-snippet pre {
  -webkit-overflow-scrolling: auto;
}
.paas-pads-show-page .paas-mysql-table-description.markdown-question-snippet pre::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
  cursor: pointer;
}
.paas-pads-show-page .paas-mysql-table-description.markdown-question-snippet pre::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .paas-mysql-table-description.markdown-question-snippet pre::-webkit-scrollbar-thumb:vertical {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .paas-mysql-table-description.markdown-question-snippet pre::-webkit-scrollbar-thumb:vertical:active {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .paas-mysql-table-description.markdown-question-snippet pre::-webkit-scrollbar-corner {
  background-color: transparent;
}
.paas-pads-show-page .paas-mysql-table-description.markdown-question-snippet pre::-webkit-scrollbar-thumb:horizontal {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .paas-mysql-table-description.markdown-question-snippet pre::-webkit-scrollbar-thumb:horizontal:active {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.paas-pads-show-page .smb-tab-nav-item-box {
  width: 100%;
  background: #2e3033;
  padding: 8px;
}
.paas-pads-show-page .smb-tab-nav-item-box .smb-tab-nav-item {
  box-sizing: border-box;
  line-height: normal;
  display: inline-block;
  cursor: pointer;
  color: #999;
  font-size: 14px;
  padding: 0 8px;
  margin-right: 8px;
  height: 28px;
  line-height: 28px;
  font-weight: 400;
  position: relative;
  transition: all 0.1s ease-in-out;
}
.paas-pads-show-page .smb-tab-nav-item-box.smb-tab-border-card {
  position: relative;
}
.paas-pads-show-page .smb-tab-nav-item-box.smb-tab-border-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .smb-tab-nav-item-box .smb-tab-nav-item:not(.is-forbidden-item):not(.is-active):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.paas-pads-show-page .smb-tab-nav-item-box .is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
.paas-pads-show-page .smb-tab-nav-item-box .is-forbidden-item {
  cursor: not-allowed;
  color: #4d4d4d;
}
.paas-pads-show-page .smb-tab-nav-item-box .is-hidden {
  display: none;
}
.paas-pads-show-page .smb-tab-content-item-box {
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.paas-pads-show-page .smb-tab-content-item-box .is-invisible {
  visibility: hidden;
  overflow-y: hidden;
  position: absolute;
  left: -100%;
}
.paas-pads-show-page .smb-tab-content-item-box .is-hidden {
  display: none;
}
.paas-pads-show-page .database-middleware-panel {
  width: 100%;
  height: 100%;
  min-width: 300px;
}
.paas-pads-show-page .database-middleware-panel-header {
  height: 44px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .database-middleware-panel-body {
  padding: 12px;
  height: calc(100% - 45px);
  overflow-y: auto;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.paas-pads-show-page .database-middleware-panel-body::-webkit-scrollbar {
  display: none;
}
.paas-pads-show-page .database-middleware-panel-title {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.paas-pads-show-page .database-middleware-panel-text {
  font-size: 12px;
  color: #ccc;
}
.paas-pads-show-page .database-middleware-panel-card {
  padding: 12px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page .database-middleware-panel-card-header {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .database-middleware-panel .how-set-desc-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}
.paas-pads-show-page .database-middleware-panel .how-set-desc-body {
  font-size: 12px;
}
.paas-pads-show-page .database-middleware-panel .how-set-desc-body .how-set-desc-items .how-set-desc-item {
  display: flex;
  align-items: flex-start;
}
.paas-pads-show-page .database-middleware-panel .how-set-desc-body .how-set-desc-items .how-set-desc-item-desc {
  color: #ccc;
}
.paas-pads-show-page .database-middleware-panel .icon-btn {
  padding: 6px;
  display: flex;
  border-radius: 4px;
}
.paas-pads-show-page .database-middleware-panel .icon-btn .smb-icon {
  font-size: 16px;
  color: #999;
}
.paas-pads-show-page .database-middleware-panel .icon-btn:hover .smb-icon, .paas-pads-show-page .database-middleware-panel .icon-btn:focus .smb-icon {
  color: #fff;
}
.paas-pads-show-page .database-middleware-panel .icon-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page .database-middleware-panel .icon-btn:focus {
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .database-middleware-panel .icon-btn.disabled {
  border-color: rgba(255, 255, 255, 0.1);
  color: #666;
  background-color: rgba(255, 255, 255, 0.05);
  cursor: not-allowed;
}
.paas-pads-show-page .database-middleware-panel .icon-btn.disabled:hover {
  color: #666;
  background-color: rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page .database-middleware-panel .smb-icon-idea {
  color: #408cff;
}
.paas-pads-show-page .database-middleware-panel .smb-icon-idea.color-major-green {
  color: #47b28f;
}
.paas-pads-show-page .database-middleware-panel .database-middleware-desc {
  white-space: pre-line;
  word-break: break-all;
}
.paas-pads-show-page .database-middleware-panel .add-middleware-btn {
  display: flex;
  margin: auto;
  width: fit-content;
}
.paas-pads-show-page .database-middleware-panel .variable-table {
  width: 100%;
}
.paas-pads-show-page .database-middleware-panel .variable-table .variable-table-header {
  font-weight: 600;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px 4px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .database-middleware-panel .variable-table .variable-table-row {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .database-middleware-panel .variable-table .variable-table-row:not(:first-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .database-middleware-panel .variable-table .variable-table-row:last-child {
  border-radius: 0 0 4px 4px;
}
.paas-pads-show-page .database-middleware-panel .variable-table .variable-table-cell {
  display: flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
}
.paas-pads-show-page .database-middleware-panel .variable-table .variable-table-cell.variable-text {
  color: #999;
  min-width: 80px;
  width: 35%;
}
.paas-pads-show-page .database-middleware-panel .variable-table .variable-table-cell.variable-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ccc;
  min-width: 140px;
  width: 60%;
  padding-right: 4px;
}
.paas-pads-show-page .database-middleware-panel .variable-table .variable-table-cell.variable-name .icon-btn {
  opacity: 0;
  padding: 4px;
}
.paas-pads-show-page .database-middleware-panel .variable-table .variable-table-cell.variable-name .icon-btn .smb-icon {
  cursor: pointer;
  font-size: 12px;
}
.paas-pads-show-page .database-middleware-panel .variable-table .variable-table-cell.variable-name:hover .icon-btn {
  opacity: 1;
}
.paas-pads-show-page .database-middleware-panel .variable-table .variable-table-cell:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .database-middleware-tables-dialog .el-select {
  width: fit-content;
}
.paas-pads-show-page .database-middleware-sql-dialog {
  /*
      Name:       one-dark 1.1.1
      Author:     Török Ádám (http://github.com/Aerobird98)
      Original Atom One Dark Theme (https://github.com/atom/one-dark-ui & https://github.com/atom/one-dark-syntax)
  */
  /* basic */
  /* addon: edit/machingbrackets.js & addon: edit/matchtags.js */
  /* addon: fold/foldgutter.js */
  /* addon: selection/active-line.js */
  /* basic syntax */
  /* original: #abb2bf */
  /* original: #abb2bf */
  /* css syntax corrections */
  /* lua syntax corrections */
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #222426;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
  z-index: 0;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark.CodeMirror-focused {
  border: 1px solid #408cff;
  box-shadow: 0px 0px 1px 2px rgba(64, 143, 255, 0.2);
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .CodeMirror-gutters {
  border-right: 1px solid #3a3c40;
  background-color: #3a3c40;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark pre.CodeMirror-placeholder {
  color: #999;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .CodeMirror-scroll {
  max-height: 450px;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark {
  color: #abb2bf;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .CodeMirror-selected {
  background-color: #3e4451;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .CodeMirror-linenumber,
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .CodeMirror-linenumbers {
  color: #5c6370 !important;
  background-color: transparent;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .CodeMirror-lines {
  color: #abb2bf !important;
  background-color: transparent;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .CodeMirror-cursor {
  border-left: 2px solid #ffffff !important;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .CodeMirror-matchingbracket,
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .CodeMirror-matchingtag {
  color: #abb2bf !important;
  outline: 1px solid #515a6b;
  background-color: rgba(186, 208, 248, 0.2784313725);
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .CodeMirror-nonmatchingbracket {
  color: #abb2bf !important;
  outline: 1px solid #515a6b;
  background-color: rgba(186, 208, 248, 0.2784313725);
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .CodeMirror-foldmarker,
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .CodeMirror-foldgutter,
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .CodeMirror-foldgutter-open,
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .CodeMirror-foldgutter-folded {
  border: none;
  text-shadow: none;
  color: #5c6370 !important;
  background-color: transparent;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .CodeMirror-activeline-background {
  background-color: rgba(153, 187, 255, 0.04);
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-header {
  color: #e06c75;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-quote {
  color: #5c6370;
  font-style: italic;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-negative {
  color: #e06c75;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-positive {
  color: #e06c75;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-strong {
  color: #d19a66;
  font-weight: bold;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-header .cm-strong {
  color: #d19a66;
  font-weight: bold;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-em {
  color: #c678dd;
  font-style: italic;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-header .cm-em {
  color: #c678dd;
  font-style: italic;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-tag {
  color: #e06c75;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-attribute {
  color: #d19a66;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-link {
  color: #98c379;
  border-bottom: solid 1px #98c379;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-builtin {
  color: #e06c75;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-keyword {
  color: #c678dd;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-def {
  color: #abb2bf;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-atom {
  color: #d19a66;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-number {
  color: #d19a66;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-property {
  color: #56b6c2;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-qualifier {
  color: #d19a66;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-variable {
  color: #e06c75;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-string {
  color: #98c379;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-punctuation {
  color: #abb2bf;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-operator {
  color: #56b6c2;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-meta {
  color: #abb2bf;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-bracket {
  color: #abb2bf;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-comment {
  color: #7d8799;
  font-style: italic;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-error {
  color: #e06c75;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-m-css.cm-variable {
  color: #828997;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-m-css.cm-property {
  color: #abb2bf;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-m-css.cm-atom {
  color: #56b6c2;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-m-css.cm-builtin {
  color: #56b6c2;
}
.paas-pads-show-page .database-middleware-sql-dialog .cm-s-one-dark .cm-m-lua.cm-variable {
  color: #56b6c2;
}
.paas-pads-show-page .database-middleware-sql-dialog .database-middleware-sql-description {
  white-space: pre-line;
  color: #999;
}
.paas-pads-show-page .database-middleware-sql-dialog .el-select {
  width: fit-content;
}
.paas-pads-show-page .database-middleware-sql-dialog .sql-result-body-box {
  background-color: #222426;
  overflow: auto;
  height: 150px;
}
.paas-pads-show-page .database-middleware-sql-dialog .sql-result-body-box .markdown-question {
  height: 100%;
}
.paas-pads-show-page .database-middleware-sql-dialog .smb-sql-result {
  margin-left: 0;
}
.paas-pads-show-page .database-middleware-sql-dialog .smb-sql-result .no-result {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paas-pads-show-page .debug-config-dialog {
  /*
      Name:       one-dark 1.1.1
      Author:     Török Ádám (http://github.com/Aerobird98)
      Original Atom One Dark Theme (https://github.com/atom/one-dark-ui & https://github.com/atom/one-dark-syntax)
  */
  /* basic */
  /* addon: edit/machingbrackets.js & addon: edit/matchtags.js */
  /* addon: fold/foldgutter.js */
  /* addon: selection/active-line.js */
  /* basic syntax */
  /* original: #abb2bf */
  /* original: #abb2bf */
  /* css syntax corrections */
  /* lua syntax corrections */
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #222426;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
  z-index: 0;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark.CodeMirror-focused {
  border: 1px solid #408cff;
  box-shadow: 0px 0px 1px 2px rgba(64, 143, 255, 0.2);
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .CodeMirror-gutters {
  border-right: 1px solid #3a3c40;
  background-color: #3a3c40;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark pre.CodeMirror-placeholder {
  color: #999;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .CodeMirror-scroll {
  max-height: 450px;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark {
  color: #abb2bf;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .CodeMirror-selected {
  background-color: #3e4451;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .CodeMirror-linenumber,
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .CodeMirror-linenumbers {
  color: #5c6370 !important;
  background-color: transparent;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .CodeMirror-lines {
  color: #abb2bf !important;
  background-color: transparent;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .CodeMirror-cursor {
  border-left: 2px solid #ffffff !important;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .CodeMirror-matchingbracket,
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .CodeMirror-matchingtag {
  color: #abb2bf !important;
  outline: 1px solid #515a6b;
  background-color: rgba(186, 208, 248, 0.2784313725);
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .CodeMirror-nonmatchingbracket {
  color: #abb2bf !important;
  outline: 1px solid #515a6b;
  background-color: rgba(186, 208, 248, 0.2784313725);
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .CodeMirror-foldmarker,
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .CodeMirror-foldgutter,
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .CodeMirror-foldgutter-open,
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .CodeMirror-foldgutter-folded {
  border: none;
  text-shadow: none;
  color: #5c6370 !important;
  background-color: transparent;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .CodeMirror-activeline-background {
  background-color: rgba(153, 187, 255, 0.04);
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-header {
  color: #e06c75;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-quote {
  color: #5c6370;
  font-style: italic;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-negative {
  color: #e06c75;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-positive {
  color: #e06c75;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-strong {
  color: #d19a66;
  font-weight: bold;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-header .cm-strong {
  color: #d19a66;
  font-weight: bold;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-em {
  color: #c678dd;
  font-style: italic;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-header .cm-em {
  color: #c678dd;
  font-style: italic;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-tag {
  color: #e06c75;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-attribute {
  color: #d19a66;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-link {
  color: #98c379;
  border-bottom: solid 1px #98c379;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-builtin {
  color: #e06c75;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-keyword {
  color: #c678dd;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-def {
  color: #abb2bf;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-atom {
  color: #d19a66;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-number {
  color: #d19a66;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-property {
  color: #56b6c2;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-qualifier {
  color: #d19a66;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-variable {
  color: #e06c75;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-string {
  color: #98c379;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-punctuation {
  color: #abb2bf;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-operator {
  color: #56b6c2;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-meta {
  color: #abb2bf;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-bracket {
  color: #abb2bf;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-comment {
  color: #7d8799;
  font-style: italic;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-error {
  color: #e06c75;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-m-css.cm-variable {
  color: #828997;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-m-css.cm-property {
  color: #abb2bf;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-m-css.cm-atom {
  color: #56b6c2;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-m-css.cm-builtin {
  color: #56b6c2;
}
.paas-pads-show-page .debug-config-dialog .cm-s-one-dark .cm-m-lua.cm-variable {
  color: #56b6c2;
}
.paas-pads-show-page .confirm-dialog .confirm-wrap {
  align-items: flex-start;
}
.paas-pads-show-page .confirm-dialog .confirm-wrap .warning-icon {
  padding-top: 1px;
}
.paas-pads-show-page .confirm-dialog .confirm-wrap .warning-icon i {
  color: #e57239;
  margin-right: 8px;
  font-size: 20px;
}
.paas-pads-show-page .confirm-dialog .confirm-wrap .confirm-content {
  color: #fff;
  font-weight: 600;
}
.paas-pads-show-page .confirm-dialog .el-dialog__footer button + button {
  margin-left: 4px;
}
.paas-pads-show-page .smb-playback-bar__slider {
  display: flex;
  align-items: center;
}
.paas-pads-show-page .smb-playback-bar__slider-runway {
  cursor: pointer;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background-color: #666;
  position: relative;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__slider-bar {
  position: absolute;
  height: 100%;
  left: 0;
  background-color: #4488ff;
  border-radius: 2px;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__slider-btn {
  position: absolute;
  transform: translateX(-50%);
  top: -2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  outline: 4px solid rgba(53, 120, 255, 0.5);
  cursor: grab;
  z-index: 2;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__slider-btn:hover {
  transform: scale(1.25) translateX(-50%);
  cursor: grab;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks {
  width: 100%;
  position: relative;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark {
  position: absolute;
  top: -3px;
  transform: translateX(-50%);
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark .mark-shape {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -4px;
  cursor: pointer;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark .mark-shape .circle {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark .mark-shape .rect {
  height: 11px;
  width: 1px;
  margin-top: -1px;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark .mark-shape.mark-type-run .circle,
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark .mark-shape.mark-type-run .rect {
  background-color: #48c37d;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark .mark-shape.mark-type-switch .circle,
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark .mark-shape.mark-type-switch .rect {
  background-color: #48c37d;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark .mark-shape.mark-type-exception .circle,
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark .mark-shape.mark-type-exception .rect {
  background-color: #f9925a;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark:not(.mark-switch-question):not(.mark-video):not(:mark-auto-submitted):hover {
  top: -9px !important;
  transition: all 0.2s ease-in-out;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark:not(.mark-switch-question):not(.mark-video):not(:mark-auto-submitted):hover .mark-shape .circle {
  width: 9px;
  height: 9px;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark:not(.mark-switch-question):not(.mark-video):not(:mark-auto-submitted):hover .mark-shape .rect {
  height: 13px;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark.mark-switch-question {
  padding: 0 2px;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark.mark-switch-question .rect {
  width: 2px;
  height: 11px;
  box-sizing: content-box;
  background-color: #4488ff;
  border-left: 2px solid #2e3033;
  border-right: 2px solid #2e3033;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark.mark-video, .paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark.mark-auto-submitted {
  top: -9px !important;
  z-index: 1;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark.mark-video > i, .paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark.mark-auto-submitted > i {
  background-color: #2e3033;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark.mark-video:hover, .paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark.mark-auto-submitted:hover {
  transform: translateX(-50%) scale(1.2);
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__marks .smb-playback-bar__mark.mark-auto-submitted {
  color: #e57239;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__spare-times {
  width: 100%;
  position: relative;
  z-index: 1;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__spare-times .smb-playback-bar__spare-time-item {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  height: 4px;
  pointer-events: none;
}
.paas-pads-show-page .smb-playback-bar__slider-runway .smb-playback-bar__spare-times .smb-playback-bar__spare-time-item__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.paas-pads-show-page .smb-playback-bar__tooltip > .v-popper__wrapper .v-popper__arrow-container {
  display: none;
}
.paas-pads-show-page .smb-playback-bar__tooltip > .v-popper__wrapper .v-popper__inner {
  padding: 4px;
  border-radius: 8px;
}
.paas-pads-show-page .smb-playback-bar__tooltip-wrap {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 4px;
  border-radius: 4px;
  max-width: 172px;
}
.paas-pads-show-page .smb-playback-bar__tooltip-wrap.spare {
  background-color: unset;
}
.paas-pads-show-page .smb-playback-bar__tooltip.locale-en .smb-playback-bar__tooltip-wrap {
  max-width: 272px;
}
.paas-pads-show-page .smb-playback-bar__tooltip-header {
  font-size: 12px;
  line-height: 17px;
  color: #fff;
}
.paas-pads-show-page .smb-playback-bar__tooltip-header > div:not(:first-child) {
  margin-top: 8px;
}
.paas-pads-show-page .smb-playback-bar__tooltip-header-extra {
  font-size: 12px;
  line-height: 17px;
  color: #ccc;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0 4px;
  border-radius: 10px;
  margin-left: 4px;
}
.paas-pads-show-page .smb-playback-bar__tooltip-time {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 12px;
  line-height: 17px;
  color: #ccc;
  margin-top: 8px;
}
.paas-pads-show-page .smb-playback-bar__tooltip-content {
  margin-top: 8px;
  font-size: 12px;
  line-height: 17px;
  color: #ccc;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.paas-pads-show-page .smb-playback-bar__tooltip-relative-time {
  font-size: 12px;
  margin-top: 8px;
  text-align: center;
  line-height: 17px;
  color: #fff;
}
.paas-pads-show-page #interview-assess-dialog .el-dialog__body {
  max-height: 500px;
  overflow-y: scroll;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item {
  background-color: #3a3c40;
  border-radius: 4px;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .rate-content .rate-content-text {
  width: 120px;
  margin-right: 12px;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .el-rate {
  margin-right: 10px;
  height: 24px;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .el-rate .el-rate__icon {
  font-size: 24px;
  margin-right: 2px;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .el-tag {
  margin-right: 50px;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .el-tag.zero {
  background-color: #6d757d;
  border-color: #6d757d;
  color: #ffffff;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .el-tag.one {
  background-color: #d9574c;
  border-color: transparent;
  color: #ffffff;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .el-tag.two {
  background-color: #e5a82e;
  border-color: transparent;
  color: #fff;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .el-tag.three {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: transparent;
  color: #ffffff;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .el-tag.four {
  background-color: #e57239;
  border-color: transparent;
  color: #ffffff;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .el-tag.five {
  background-color: #47b28f;
  border-color: #47b28f;
  color: #ffffff;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .edit-btn {
  padding: 8px 12px;
  height: 100%;
  font-weight: 400;
  background-color: #262626;
  border-radius: 4px;
  border: 1px solid #444444;
  color: #ffffff;
  z-index: 1;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .edit-btn:hover {
  background-color: #333;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .edit-btn:focus {
  outline: none;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .edit-btn img {
  width: 12px;
}
@media (max-width: 450px) {
  .paas-pads-show-page #interview-assess-dialog .interview-assess-item .edit-btn {
    margin-top: 5px;
  }
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .assess-content {
  font-size: 14px;
  font-weight: 400;
  color: #eeeeee;
  white-space: normal;
  word-wrap: break-all;
  word-break: break-all;
  background: #333333;
  padding: 12px;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .assess-input .el-textarea__inner {
  background-color: #222426;
  color: #ffffff;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item p {
  margin: 4px 0;
  font-size: 14px;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .evaluation-tags {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -8px;
  margin-top: 2px;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .evaluation-tags li {
  font-size: 12px;
  border-radius: 14px;
  padding: 2px 9px;
  margin-top: 8px;
  margin-left: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #666;
  cursor: not-allowed;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .evaluation-tags li.active {
  cursor: pointer;
  color: #0090b2;
  border-color: #0090b2;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .evaluation-tags li.active:hover {
  opacity: 0.7;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .evaluation-tags li.passed.active {
  color: #47b28f;
  border-color: #47b28f;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .evaluation-tags li.eliminated.active {
  color: #d9574c;
  border-color: #d9574c;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .evaluation-tags li.determined.active {
  color: #e57239;
  border-color: #e57239;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .evaluation-tags li.customed-tag {
  cursor: pointer;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .evaluation-tags li.customed-tag .smb-icon-close {
  opacity: 0.7;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .team-setting-link {
  color: #999;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .content-separator {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .interview-assess-item-header {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 12px;
  margin: 12px 0;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .interview-assess-item-header .change-evaluation-template {
  color: #999999;
  font-size: 12px;
  margin-top: 20px;
  display: flex;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .interview-assess-item-header .change-evaluation-template .evaluation-template-btn {
  margin-left: 8px;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .interview-assess-item-header .change-evaluation-template .switch-template-action {
  font-size: 12px;
  margin-left: 8px;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .editer-info-group {
  color: #999999;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .editer-info-group .evaluation-user-name {
  margin-left: 4px;
}
.paas-pads-show-page #interview-assess-dialog .interview-assess-item .editer-info-group .evaluation-at {
  margin-left: 8px;
}
.paas-pads-show-page #interview-assess-dialog .assess-content-error {
  color: #f23524;
  font-size: 12px;
  padding-top: 12px;
}
.paas-pads-show-page #interview-assess-dialog .draft-interview-assess-item-wraper {
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}
.paas-pads-show-page #interview-assess-dialog .draft-interview-assess-item-wraper .draft-content-title {
  color: #ffffff;
  font-size: 12px;
}
.paas-pads-show-page #interview-assess-dialog .draft-interview-assess-item-wraper .draft-content-title .title-note {
  color: #999999;
  font-size: 12px;
}
.paas-pads-show-page #interview-assess-dialog .draft-interview-assess-item-wraper .draft-content-title .smb-pad-note {
  margin-right: 4px;
}
.paas-pads-show-page #interview-assess-dialog .draft-interview-assess-item-wraper .draft-conent-item {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  padding: 8px;
  margin: 8px 0;
  font-size: 12px;
  color: #ffffff;
}
.paas-pads-show-page #interview-assess-dialog .draft-interview-assess-item-wraper .content-separator {
  margin: 12px 0;
}
.paas-pads-show-page .interview-record-dialog-drag-wrap {
  z-index: 1001;
}
.paas-pads-show-page .interview-record-dialog-drag-wrap .interview-record {
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .interview-record-dialog-drag-wrap .interview-record .CodeMirror {
  padding: 12px;
  background: #222426;
  border-radius: 8px;
}
.paas-pads-show-page .interview-record-dialog-drag-wrap .interview-record .CodeMirror-scroll {
  margin-bottom: -50px;
  padding-bottom: -15px;
  height: 100%;
}
.paas-pads-show-page .interview-record-dialog-drag-wrap .interview-record pre.CodeMirror-placeholder.CodeMirror-line-like {
  color: #999;
}
.paas-pads-show-page #problem-feedback-dialog .el-dialog__body .dialog-body .el-collapse {
  border: unset;
}
.paas-pads-show-page #problem-feedback-dialog .el-dialog__body .dialog-body .el-collapse .el-collapse-item__header {
  height: 40px;
  padding: 8px 12px;
}
.paas-pads-show-page #problem-feedback-dialog .el-dialog__body .dialog-body .el-collapse .el-collapse-item__header .problem-feedback-item-title {
  flex: 1 0 90%;
  order: 1;
  color: #fff;
  width: 90%;
  margin-left: 8px;
  font-size: 14px;
  line-height: 40px;
}
.paas-pads-show-page #problem-feedback-dialog .el-dialog__body .dialog-body .el-collapse .el-collapse-item__wrap .problem-feedback-item {
  color: #ccc;
  margin: 0;
  padding: 12px;
  border-radius: 4px;
}
.paas-pads-show-page #problem-feedback-dialog .el-dialog__body .dialog-body .el-collapse .el-collapse-item__wrap .problem-feedback-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.paas-pads-show-page #problem-feedback-dialog .el-dialog__body .dialog-body .el-collapse .el-collapse-item__wrap .el-radio__input.is-checked + .el-radio__label {
  color: #fff;
}
.paas-pads-show-page #problem-feedback-dialog .el-dialog__body .dialog-body .el-collapse .el-collapse-item__wrap .problem-feedback-other-problem textarea {
  background: #2e3033;
  border-radius: 4px;
  padding: 12px;
  width: 100%;
  min-height: 84px;
  resize: none;
  color: #fff;
}
.paas-pads-show-page #problem-feedback-dialog .el-dialog__body .dialog-body .el-collapse .el-collapse-item__wrap .problem-feedback-other-problem textarea::placeholder {
  color: #999;
}
.paas-pads-show-page #problem-feedback-dialog .el-dialog__body .dialog-body .el-collapse .el-collapse-item:not(:first-child) .el-collapse-item__header {
  margin-top: 12px;
}
.paas-pads-show-page #problem-feedback-dialog .el-dialog__body .dialog-body .el-collapse .el-collapse-item:last-child .el-collapse-item__wrap .problem-feedback-item {
  cursor: default;
}
.paas-pads-show-page #preview-question-dialog .el-dialog__header {
  border-bottom: 1px rgba(255, 255, 255, 0.05) solid;
}
.paas-pads-show-page #preview-question-dialog .el-dialog__header .preview-title {
  display: flex;
  align-items: center;
}
.paas-pads-show-page #preview-question-dialog .el-dialog__header .preview-title .smb-link, .paas-pads-show-page #preview-question-dialog .el-dialog__header .preview-title .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .el-button, .paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list #preview-question-dialog .el-dialog__header .preview-title .el-button {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.paas-pads-show-page #preview-question-dialog .el-dialog__header .preview-title .smb-link i, .paas-pads-show-page #preview-question-dialog .el-dialog__header .preview-title .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list .el-button i, .paas-pads-show-page .questions-tree-component.el-tree .el-tree-node__content .custom-node .node-actions-list #preview-question-dialog .el-dialog__header .preview-title .el-button i {
  margin-top: 2px;
}
.paas-pads-show-page #preview-question-dialog .el-dialog__header .preview-title .actions-divide {
  height: 12px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 12px;
}
.paas-pads-show-page #preview-question-dialog .el-dialog__body {
  padding: 0;
  position: relative;
  color: #fff;
}
.paas-pads-show-page #preview-question-dialog .el-dialog__body .dialog-body {
  color: #fff;
}
.paas-pads-show-page #preview-question-dialog .el-dialog__footer .smb-btn.disabled, .paas-pads-show-page #preview-question-dialog .el-dialog__footer .d42-modal-footer .disabled.d42-btn, .paas-pads-show-page .d42-modal-footer #preview-question-dialog .el-dialog__footer .disabled.d42-btn {
  color: #999;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel {
  margin-bottom: 20px;
  padding: 12px 16px 16px 16px;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .el-collapse .el-collapse-item:not(:first-child) {
  margin-top: 12px;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .question-title {
  font-size: 16px;
  font-weight: 600;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .summary-info-container {
  margin: 15px auto;
  width: 100%;
  background-color: #3a3c40;
  border-radius: 5px;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .summary-info-container__contents-row {
  display: flex;
  flex-direction: row;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .summary-info-container__contents-row .content {
  width: 33%;
  padding: 8px;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .summary-info-container__contents-row .content:last-child {
  width: 34%;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .summary-info-container__contents-row .content__name {
  color: #999;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .summary-info-container__contents-row .content__value {
  color: #ccc;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .summary-info-container__contents-row .content__value.time {
  color: #47b28f;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .summary-info-container__tags-row {
  padding: 8px;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .summary-info-container,
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .summary-info-container__contents-row .content,
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .summary-info-container__tags-row {
  border: 0.5px rgba(255, 255, 255, 0.05) solid;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .question-preview-panel__item-title {
  flex: 1;
  order: 1;
  margin-left: 8px;
  font-size: 14px;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel-code {
  color: #ccc;
  font-size: 14px;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .CodeMirror {
  height: auto;
  background-color: unset;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .CodeMirror,
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel pre {
  font-size: 14px;
  color: #fff;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .description-contents-board-content {
  display: none;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .description-contents-board-output {
  overflow-x: auto;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .content-separator {
  margin: 20px 0;
  height: 1px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .markdown-question {
  max-height: unset;
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .markdown-question pre code {
  color: #ffffff;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .markdown-question ul,
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .markdown-question ol,
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .markdown-question p {
  color: #cccccc;
}
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .markdown-question ul,
.paas-pads-show-page #preview-question-dialog .el-dialog .el-dialog__body .question-preview-panel .markdown-question ol {
  border-color: #666666;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body {
  padding: 0;
  position: relative;
  color: #fff;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .dialog-body {
  color: #fff;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .edit-questions {
  position: absolute;
  right: 20px;
  top: 8px;
  text-decoration: none;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .edit-questions .smb-icon-arrow-button {
  color: currentColor;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .select-questions-loading {
  padding-top: 150px !important;
  padding-bottom: 150px !important;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .select-questions-loading .el-loading-mask {
  background: #2e3033;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .select-questions-loading .el-loading-mask .el-loading-spinner .circular {
  margin: 0 auto;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .select-questions-lazy-loading .el-loading-mask .el-loading-spinner {
  margin-top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .el-tabs__header {
  padding: 8px 20px 12px;
  display: flex;
  margin: 0;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .el-tabs__header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .el-tabs__nav-wrap::after {
  content: none;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .el-tabs__nav-wrap .el-tabs__nav-scroll {
  padding-bottom: 8px;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .el-tabs__nav-wrap .el-tabs__active-bar {
  display: none;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .el-tabs__nav-wrap .el-tabs__item {
  color: #fff;
  opacity: 0.45;
  font-size: 14px;
  padding: 0;
  height: auto;
  line-height: unset;
  font-weight: 400;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .el-tabs__nav-wrap .el-tabs__item:nth-child(2) {
  margin-right: 20px;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .el-tabs__nav-wrap .el-tabs__item.is-active {
  opacity: 1;
  font-weight: 600;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .el-tabs__nav-wrap .el-tabs__item.is-active::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  bottom: -8px;
  left: 50%;
  background: #cc3f33;
  border-radius: 2px;
  transform: translate(-50%, 0);
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .inhibit-management-questions-tip {
  color: #999;
  padding-bottom: 20px;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .el-dropdown {
  color: #fff;
}
.paas-pads-show-page #select-question-dialog .el-dialog__footer .smb-btn.disabled, .paas-pads-show-page #select-question-dialog .el-dialog__footer .d42-modal-footer .disabled.d42-btn, .paas-pads-show-page .d42-modal-footer #select-question-dialog .el-dialog__footer .disabled.d42-btn {
  color: #999;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-header {
  padding: 0 20px;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-header .search-creator {
  width: 140px;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-header .search-language {
  width: 164px;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-header .search-title {
  max-width: 352px;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-header-question-referer {
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body-no-data {
  height: 200px;
  color: #666;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse {
  max-height: 400px;
  min-height: 200px;
  overflow-y: auto;
  border: unset;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse .el-collapse-item.is-active {
  position: relative;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse .el-collapse-item.is-active :first-child[role=tab] {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 10;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse .el-collapse-item__header {
  background: #4e5053;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse .el-collapse-item__header .collapse-title {
  flex: 1 0 90%;
  order: 1;
  color: #fff;
  width: 90%;
  font-weight: 400;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse .el-collapse-item__header .collapse-title .question-title i.smb-icon {
  font-size: 16px;
  color: #666;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse .el-collapse-item__header .collapse-title .question-title i.smb-icon.collected {
  color: #e5a82e;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse .el-collapse-item__wrap {
  z-index: 9;
  background: #4e5053;
  border: none;
  border-radius: 0 0 4px 4px;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse .el-collapse-item__content .question-content {
  padding: 0 16px;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse .el-collapse-item__content .question-content .creator-info {
  color: #999;
  font-size: 14px;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse .el-collapse-item__content .question-content-code {
  color: #ccc;
  font-size: 14px;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse .el-collapse-item__content .question-content .CodeMirror {
  height: auto;
  background-color: unset;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse .el-collapse-item__content .question-content .CodeMirror-code {
  color: #ccc;
  font-size: 14px;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse .el-collapse-item__content .question-content .CodeMirror .CodeMirror {
  height: auto;
  background-color: unset;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse .el-collapse-item__content .question-content .CodeMirror .CodeMirror,
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse .el-collapse-item__content .question-content .CodeMirror pre {
  font-size: 14px;
  color: #fff;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse .el-collapse-item__content .question-content .CodeMirror .description-contents-board-content {
  display: none;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse .el-collapse-item__content .question-content .CodeMirror .description-contents-board-output {
  overflow-x: auto;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .el-collapse .el-collapse-item__content .question-content .CodeMirror .content-separator {
  margin: 20px 0;
  height: 1px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .paas-questions-tree-header {
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.1);
  color: #999;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .paas-questions-tree-body {
  background-color: #3a3c40;
  max-height: 450px;
  overflow-y: scroll;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .paas-questions-tree-body--loading {
  height: 60px;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .paas-questions-tree-body--loading .el-loading-mask {
  background: #2e3033;
}
.paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .paas-questions-tree-body--loading .el-loading-mask .el-loading-spinner .circular {
  margin: 0 auto;
}
.paas-pads-show-page #select-question-dialog .select-question-dialog-pad-written-questions .paas-questions-body {
  background-color: #3a3c40;
}
.paas-pads-show-page #select-question-dialog .select-question-dialog-pad-written-questions .paas-questions-body > .el-collapse {
  padding: 0 20px;
}
.paas-pads-show-page #select-question-dialog .select-question-dialog-pad-written-questions ul.question-content-knowledge-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.paas-pads-show-page #select-question-dialog .select-question-dialog-pad-written-questions ul.question-content-knowledge-tags li {
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  padding: 4px;
  max-width: 30%;
  height: 20px;
  line-height: 14px;
  border-radius: 2px;
}
.paas-pads-show-page #language-env-desc-dialog .markdown-question {
  max-height: unset;
  border-radius: 8px;
  padding: 8px;
}
.paas-pads-show-page #language-env-desc-dialog .markdown-question ul,
.paas-pads-show-page #language-env-desc-dialog .markdown-question ol,
.paas-pads-show-page #language-env-desc-dialog .markdown-question p {
  color: #cccccc;
}
.paas-pads-show-page #language-env-desc-dialog .markdown-question ul,
.paas-pads-show-page #language-env-desc-dialog .markdown-question ol {
  border-color: #666666;
}
.paas-pads-show-page #select-written-pad-question-dialog .el-dialog__body {
  overflow-y: auto;
  max-height: 600px;
  min-height: 200px;
  padding-top: 0;
  margin-top: 20px;
}
.paas-pads-show-page #select-written-pad-question-dialog .el-dialog .dialog-body.loading {
  padding-top: 150px;
  padding-bottom: 150px;
}
.paas-pads-show-page #select-written-pad-question-dialog .el-dialog .dialog-body.loading .el-loading-mask {
  background: #2e3033;
}
.paas-pads-show-page #select-written-pad-question-dialog .el-dialog .dialog-body.loading .el-loading-mask .el-loading-spinner .circular {
  margin: 0 auto;
}
.paas-pads-show-page #select-written-pad-question-dialog .el-dialog .dialog-body .el-collapse {
  border: unset;
}
.paas-pads-show-page #select-written-pad-question-dialog .el-dialog .dialog-body .el-collapse .el-collapse-item.is-active {
  position: relative;
}
.paas-pads-show-page #select-written-pad-question-dialog .el-dialog .dialog-body .el-collapse .el-collapse-item.is-active :first-child[role=tab] {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 10;
}
.paas-pads-show-page #select-written-pad-question-dialog .el-dialog .dialog-body .el-collapse .el-collapse-item__header {
  height: auto;
  position: relative;
}
.paas-pads-show-page #select-written-pad-question-dialog .el-dialog .dialog-body .el-collapse .el-collapse-item__header.is-active {
  background-color: #484a4c;
}
.paas-pads-show-page #select-written-pad-question-dialog .el-dialog .dialog-body .el-collapse .el-collapse-item__header i.el-icon-arrow-right {
  position: absolute;
  top: 16px;
}
.paas-pads-show-page #select-written-pad-question-dialog .el-dialog .dialog-body .el-collapse .el-collapse-item__header .collapse-title {
  flex: 1 0 90%;
  order: 1;
  color: #fff;
  width: 90%;
  line-height: 21px;
  height: auto;
  position: relative;
  flex-direction: column;
  padding-left: 20px;
}
.paas-pads-show-page #select-written-pad-question-dialog .el-dialog .dialog-body .el-collapse .el-collapse-item__header .collapse-title .question-wrapper-content-top {
  font-size: 14px;
}
.paas-pads-show-page #select-written-pad-question-dialog .el-dialog .dialog-body .el-collapse .el-collapse-item__header .collapse-title .question-wrapper-content-bottom {
  font-size: 12px;
}
.paas-pads-show-page #select-written-pad-question-dialog .el-dialog .dialog-body .el-collapse .el-collapse-item__header .collapse-title .question-wrapper-content-bottom .write-start-at {
  color: #999;
}
.paas-pads-show-page #select-written-pad-question-dialog .el-dialog .dialog-body .el-collapse .el-collapse-item__wrap {
  z-index: 9;
  background: #383a3d;
  border: none;
}
.paas-pads-show-page #select-written-pad-question-dialog .el-dialog .dialog-body .el-collapse .el-collapse-item__content {
  padding-bottom: 20px;
  padding-left: 32px;
}
.paas-pads-show-page #select-written-pad-question-dialog .el-dialog .dialog-body .el-collapse .el-collapse-item__content .content-separator {
  padding: 20px 0;
  width: 100%;
  position: relative;
}
.paas-pads-show-page #select-written-pad-question-dialog .el-dialog .dialog-body .el-collapse .el-collapse-item__content .content-separator::before {
  content: "";
  position: absolute;
  bottom: 50%;
  left: -20px;
  width: calc(100% + 20px);
  height: 1px;
  background: #434547;
}
.paas-pads-show-page .el-dialog__wrapper .video-invite-dialog {
  width: 420px;
}
.paas-pads-show-page .el-dialog__wrapper .video-invite-dialog .el-dialog__header {
  display: none;
}
@keyframes wave {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0.3;
    padding: 72px;
  }
  55% {
    opacity: 0.3;
    padding: 72px;
  }
  100% {
    opacity: 0;
    padding: 96px;
  }
}
.paas-pads-show-page .el-dialog__wrapper .video-invite-dialog .el-dialog__body .video-invite-wrapper {
  padding: 20px 0;
}
.paas-pads-show-page .el-dialog__wrapper .video-invite-dialog .el-dialog__body .video-invite-wrapper-title {
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
}
.paas-pads-show-page .el-dialog__wrapper .video-invite-dialog .el-dialog__body .video-invite-wrapper-body {
  margin: 20px auto 0 auto;
  width: 240px;
  height: 240px;
}
.paas-pads-show-page .el-dialog__wrapper .video-invite-dialog .el-dialog__body .video-invite-wrapper-body .user-avatar-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #408cff;
  border-radius: 50%;
}
.paas-pads-show-page .el-dialog__wrapper .video-invite-dialog .el-dialog__body .video-invite-wrapper-body .user-avatar-wrapper img.user-avatar {
  width: 20px;
  height: 20px;
}
.paas-pads-show-page .el-dialog__wrapper .video-invite-dialog .el-dialog__body .video-invite-wrapper-body .animation-wave-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.paas-pads-show-page .el-dialog__wrapper .video-invite-dialog .el-dialog__body .video-invite-wrapper-body .animation-wave-wrapper .wave {
  position: absolute;
  padding: 24px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  animation-name: wave;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: normal;
  animation-duration: 1.5s;
  animation-fill-mode: both;
}
.paas-pads-show-page .el-dialog__wrapper .video-invite-dialog .el-dialog__body .video-invite-wrapper-body .animation-wave-wrapper .wave.delay {
  animation-delay: 0.75s;
}
.paas-pads-show-page .el-dialog__wrapper .video-invite-dialog .el-dialog__body .video-invite-wrapper-actions {
  margin: 20px 0 0 0;
  text-align: center;
}
.paas-pads-show-page .el-message-box {
  background-color: #3a3c40;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}
.paas-pads-show-page .el-message-box .el-message-box__header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page .el-message-box .el-message-box__header .el-message-box__headerbtn {
  top: 10px;
}
.paas-pads-show-page .el-message-box .el-message-box__header .el-message-box__headerbtn:hover, .paas-pads-show-page .el-message-box .el-message-box__header .el-message-box__headerbtn:focus {
  outline: none;
}
.paas-pads-show-page .el-message-box .el-message-box__header .el-message-box__headerbtn:hover .el-message-box__close, .paas-pads-show-page .el-message-box .el-message-box__header .el-message-box__headerbtn:focus .el-message-box__close {
  color: #999999;
}
.paas-pads-show-page .el-message-box .el-message-box__title {
  color: #333333;
  font-size: 1rem;
  font-weight: 600;
}
.paas-pads-show-page .el-message-box .el-message-box__container {
  display: flex;
  gap: 0.5rem;
}
.paas-pads-show-page .el-message-box .el-message-box__message {
  color: #333333;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: normal;
}
.paas-pads-show-page .el-message-box .el-message-box__status {
  position: relative;
  font-size: 1.25rem !important;
  transform: unset;
}
.paas-pads-show-page .el-message-box .el-message-box__status + .el-message-box__message {
  padding: 0;
}
.paas-pads-show-page .el-message-box .el-message-box__status.el-icon-warning {
  color: #fa8e58;
  top: 0;
}
.paas-pads-show-page .el-message-box .el-message-box__content {
  padding: 1.25rem;
}
.paas-pads-show-page .el-message-box .el-message-box__btns {
  padding: 0.75rem 1.25rem 0;
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-o-keyframes rotate {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.paas-pads-show-page .chat-dialog {
  position: fixed;
  left: 56px;
  bottom: 60px;
  z-index: 101;
  width: 360px;
  max-height: 480px;
  max-width: 100%;
  background: #3a3c40;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}
.paas-pads-show-page .chat-dialog-header {
  height: 100%;
  padding: 12px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page .chat-dialog-header-title {
  flex: atuo;
}
.paas-pads-show-page .chat-dialog-header-title > i {
  font-size: 14px;
  margin-right: 8px;
}
.paas-pads-show-page .chat-dialog-header-close {
  cursor: pointer;
}
.paas-pads-show-page .chat-dialog-content {
  min-height: 200px;
  max-height: 280px;
  padding: 12px;
  overflow-y: auto;
}
.paas-pads-show-page .chat-dialog-content.custom-scroll::-webkit-scrollbar, .paas-pads-show-page .el-drawer.mobile-interview-record-drawer .el-drawer__body .mobile-interview-record-drawer__code-mirror .CodeMirror .chat-dialog-content.CodeMirror-vscrollbar::-webkit-scrollbar, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box .chat-dialog-content#pane-unittest::-webkit-scrollbar, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer pre.chat-dialog-content::-webkit-scrollbar, .paas-pads-show-page .mobile-paas-question__body .chat-dialog-content.paas-question-editor::-webkit-scrollbar, .paas-pads-show-page #paas-server-error-dialog .el-collapse .chat-dialog-content.el-collapse-item__content::-webkit-scrollbar, .paas-pads-show-page .paas-testcase-panel #testcase-detail-dialog .el-dialog .chat-dialog-content.el-dialog__body::-webkit-scrollbar, .paas-pads-show-page .drawing-question-page .drawing-question .smbMxEditorContainer.smbMxEditorContainer-theme-dark .chat-dialog-content.smbMxSidebarContainerExtraOuterWrapper::-webkit-scrollbar, .paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .chat-dialog-content.CodeMirror-vscrollbar::-webkit-scrollbar,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .chat-dialog-content.CodeMirror-vscrollbar::-webkit-scrollbar, .paas-pads-show-page .chat-dialog-content.answerarea-aside-panel-body::-webkit-scrollbar, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer pre.chat-dialog-content::-webkit-scrollbar, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-debug .chat-dialog-content.paas-question-debug::-webkit-scrollbar, .paas-pads-show-page .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box .chat-dialog-content#pane-unittest::-webkit-scrollbar, .paas-pads-show-page .paas-question-body .paas-question-components .markdown-question pre.chat-dialog-content::-webkit-scrollbar, .paas-pads-show-page .chat-dialog-content.paas-aside-menu::-webkit-scrollbar, .paas-pads-show-page .paas-question-tab-panel .smb-tab-content-item-box > *:not(.smb-btn) > .chat-dialog-content::-webkit-scrollbar, .paas-pads-show-page .chat-dialog-content.pad-footer::-webkit-scrollbar, .paas-pads-show-page .resume-body .chat-dialog-content.resume-content.overflow-y-auto::-webkit-scrollbar, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .chat-dialog-content.rct-tree-root::-webkit-scrollbar, .paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .chat-dialog-content.el-tab-pane__body::-webkit-scrollbar, .paas-pads-show-page .pad-question-center-body .pad-question-center .el-tabs__content .chat-dialog-content.el-tab-pane__body::-webkit-scrollbar, .paas-pads-show-page .paas-question-panel .markdown-question pre.chat-dialog-content::-webkit-scrollbar, .paas-pads-show-page #interview-assess-dialog .chat-dialog-content.el-dialog__body::-webkit-scrollbar, .paas-pads-show-page .interview-record-dialog-drag-wrap .interview-record .chat-dialog-content.CodeMirror-vscrollbar::-webkit-scrollbar, .paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .chat-dialog-content.el-collapse::-webkit-scrollbar {
  width: 4px;
}
.paas-pads-show-page .chat-dialog-content-message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 12px;
}
.paas-pads-show-page .chat-dialog-content-message-header {
  justify-content: flex-start;
  font-size: 12px;
}
.paas-pads-show-page .chat-dialog-content-message-header-created-at {
  margin-left: 8px;
  color: #999;
}
.paas-pads-show-page .chat-dialog-content-message-header-sender-name {
  color: #fff;
  font-size: 14px;
}
.paas-pads-show-page .chat-dialog-content-message-content {
  max-width: 100%;
  margin-top: 4px;
  color: #ccc;
  font-size: 14px;
  padding: 8px 12px;
  word-break: break-all;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  /* markdown 修正 */
}
.paas-pads-show-page .chat-dialog-content-message-content h1 {
  font-size: 2.5rem;
}
.paas-pads-show-page .chat-dialog-content-message-content h2 {
  font-size: 2rem;
}
.paas-pads-show-page .chat-dialog-content-message-content h3 {
  font-size: 1.75rem;
}
.paas-pads-show-page .chat-dialog-content-message-content h4 {
  font-size: 1.5rem;
}
.paas-pads-show-page .chat-dialog-content-message-content h5 {
  font-size: 1.25rem;
}
.paas-pads-show-page .chat-dialog-content-message-content h6 {
  font-size: 1rem;
}
.paas-pads-show-page .chat-dialog-content-message-content p,
.paas-pads-show-page .chat-dialog-content-message-content pre {
  margin-bottom: 0;
  color: #ffffff;
}
.paas-pads-show-page .chat-dialog-content-message-content img {
  max-width: 100%;
}
.paas-pads-show-page .chat-dialog-content-message.current-user-message {
  align-items: flex-end;
}
.paas-pads-show-page .chat-dialog-content-message.current-user-message .chat-dialog-content-message-header {
  flex-direction: row-reverse;
}
.paas-pads-show-page .chat-dialog-content-message.current-user-message .chat-dialog-content-message-header-created-at {
  margin-left: unset;
}
.paas-pads-show-page .chat-dialog-content-message.current-user-message .chat-dialog-content-message-header-sender-name {
  margin-left: 8px;
}
.paas-pads-show-page .chat-dialog-content-message.current-user-message .chat-dialog-content-message-header-failed {
  margin-right: 4px;
  color: #d9574c;
  cursor: pointer;
  padding-top: 2px;
}
.paas-pads-show-page .chat-dialog-content-message.current-user-message .chat-dialog-content-message-header-failed .smb-icon {
  font-size: 14px;
}
.paas-pads-show-page .chat-dialog-content-message.current-user-message .chat-dialog-content-message-header-loading {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: url(https://assets.showmebug.com/smb-rails/f10d173/assets/smb-loading-d1be4817a33bee1fdc9749a9303486b64e8b6ba3358f2f2960617517b2413773.svg) no-repeat center;
  background-size: 100%;
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 1s;
  -moz-transition-property: -moz-transform;
  -moz-transition-duration: 1s;
  -webkit-animation: rotate 1s linear infinite;
  -moz-animation: rotate 1s linear infinite;
  -o-animation: rotate 1s linear infinite;
  animation: rotate 1s linear infinite;
}
.paas-pads-show-page .chat-dialog-content-message.current-user-message .chat-dialog-content-message-content {
  background: rgba(64, 140, 255, 0.6);
}
.paas-pads-show-page .chat-dialog-content-message.current-user-message .chat-dialog-content-message-content p {
  color: #ffffff;
}
.paas-pads-show-page .chat-dialog-content-op-zone {
  position: absolute;
  bottom: 156px;
  left: 12px;
  background: transparent;
}
.paas-pads-show-page .chat-dialog-content-op-zone .bottom-btn {
  display: flex;
  align-items: center;
  white-space: nowrap;
  justify-content: space-between;
  width: max-content;
  padding: 4px 8px;
  background: #3a3c40;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: #408cff;
  cursor: pointer;
  font-size: 12px;
}
.paas-pads-show-page .chat-dialog-content-op-zone .bottom-btn > .smb-icon {
  margin-left: 4px;
}
.paas-pads-show-page .chat-dialog-content-op-zone .bottom-btn:not(:first-child) {
  margin-top: 12px;
}
.paas-pads-show-page .chat-dialog-content-op-zone.is-replay-op-zone {
  bottom: 30px;
}
.paas-pads-show-page .chat-dialog-footer {
  height: 100px;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #2e3033;
}
.paas-pads-show-page .chat-dialog-footer .chat-editor {
  height: 76px;
  padding: 0;
  border: none;
  background: inherit;
}
.paas-pads-show-page .chat-dialog-footer .chat-editor-sender-active {
  cursor: pointer;
}
.paas-pads-show-page .chat-dialog-footer .chat-editor .CodeMirror {
  background: inherit;
}
.paas-pads-show-page .chat-dialog-footer .chat-editor .CodeMirror .cm-header,
.paas-pads-show-page .chat-dialog-footer .chat-editor .CodeMirror .cm-variable-2 {
  color: #408cff;
}
.paas-pads-show-page .chat-dialog-footer .chat-editor .CodeMirror-placeholder, .paas-pads-show-page .chat-dialog-footer .chat-editor .CodeMirror-line {
  color: #ccc;
  font-family: "PingFang SC";
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.paas-pads-show-page .chat-dialog-footer .chat-editor .CodeMirror-placeholder {
  color: #999;
}
.paas-pads-show-page .chat-dialog-footer .chat-editor .CodeMirror-cursor {
  border-left-color: #ccc;
  height: 16px !important;
  top: 4px !important;
}
.paas-pads-show-page .chat-dialog-footer .chat-editor .CodeMirror-sizer ~ div {
  border-color: #222426;
}
.paas-pads-show-page .chat-dialog-footer .chat-editor .CodeMirror-gutters {
  display: none;
}
.paas-pads-show-page .chat-dialog-actions {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 12px 20px;
  background: #2e3033;
  user-select: none;
}
.paas-pads-show-page .chat-dialog-actions .action-quick-reply {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.paas-pads-show-page .chat-dialog-actions .action-quick-reply span i {
  transition: 0.25s;
}
.paas-pads-show-page .chat-dialog-actions .action-quick-reply.active span i {
  transform: rotate(180deg);
}
.paas-pads-show-page .chat-dialog-actions .action-send {
  margin: 0 0 0 auto;
  cursor: pointer;
  color: #408cff;
}
.paas-pads-show-page .chat-dialog-replay-footer {
  height: 20px;
}
.paas-pads-show-page .quick-deliver-list-wrapper {
  z-index: 2;
  position: fixed;
  left: 68px;
  bottom: 70px;
  opacity: 0;
  width: 0;
  height: 0;
  transition: all 200ms ease-in-out;
}
.paas-pads-show-page .is-expanded.quick-deliver-list-wrapper {
  width: 400px;
  height: 414px;
  opacity: 1;
}
.paas-pads-show-page .quick-deliver-list-wrapper .quick-deliver-list__body {
  padding: 8px 0;
  height: 368px;
}
.paas-pads-show-page .quick-deliver-list-wrapper .quick-deliver-list__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px !important;
  padding: 0;
}
.paas-pads-show-page .quick-deliver-list-wrapper {
  background-color: #3a3c40;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0px 20px 20px rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.paas-pads-show-page .quick-deliver-list-wrapper .questions-tree-component.el-tree {
  background: #3a3c40;
  font-size: 14px;
}
.paas-pads-show-page .quick-deliver-list-wrapper .questions-tree-component.el-tree .el-tree-node__content {
  background: #3a3c40;
}
.paas-pads-show-page .quick-deliver-list-wrapper .questions-tree-component.el-tree .el-tree-node__content:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .quick-deliver-list-wrapper .quick-deliver-list__footer-wrapper {
  padding: 0;
}
.paas-pads-show-page .quick-deliver-list-wrapper .quick-deliver-list__footer {
  background-color: #408cff;
}
.paas-pads-show-page .quick-deliver-list-wrapper .quick-deliver-list__footer .footer__left-part,
.paas-pads-show-page .quick-deliver-list-wrapper .quick-deliver-list__footer .footer__right-part {
  padding: 0 15px;
  font-size: 14px;
}
.paas-pads-show-page .quick-deliver-list-wrapper .quick-deliver-list__footer .footer__left-part span {
  font-weight: 600;
}
.paas-pads-show-page .quick-deliver-list-wrapper .quick-deliver-list__footer .footer__right-part {
  cursor: pointer;
}
.paas-pads-show-page .noty-candidate-switch-screen-dialog .el-dialog__body .noty-infos {
  margin-bottom: 40px;
}
.paas-pads-show-page .noty-candidate-switch-screen-dialog .el-dialog__body .noty-infos img {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  margin-top: 3px;
}
.paas-pads-show-page .noty-candidate-switch-screen-dialog .noty-footer .el-checkbox {
  color: #ccc;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog {
  width: 420px;
  border-radius: 4px;
}
@media screen and (max-width: 576px) {
  .paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog {
    width: 100vw;
  }
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__header i.smb-icon-close {
  color: #999;
  cursor: pointer;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body {
  padding: 20px;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods {
  display: flex;
  flex-direction: column;
  user-select: none;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods .video-methods-item {
  padding: 8px;
  position: relative;
  margin-top: 20px;
  transition: unset;
  cursor: pointer;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods .video-methods-item:first-child {
  margin-top: unset;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods .video-methods-item .active-wrapper {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: inherit;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods .video-methods-item .active-wrapper i {
  position: absolute;
  right: -2px;
  top: -2px;
  font-size: 20px;
  padding: 10px;
  background: #408cff;
  border-radius: 0px 12px;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods .video-methods-item .item-wrapper {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 20px;
  transition: inherit;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods .video-methods-item .item-wrapper .logo-wrapper {
  width: 48px;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods .video-methods-item .item-wrapper .logo-wrapper img.logo {
  padding: 10px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods .video-methods-item .item-wrapper .logo-wrapper .ShowMeBug {
  background: #1b1b1b;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods .video-methods-item .item-wrapper .logo-wrapper .customized {
  background: #1b1b1b;
  padding: unset !important;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods .video-methods-item .item-wrapper .logo-wrapper .TencentMeeting {
  background: #307cf4;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods .video-methods-item .item-wrapper .intro-wrapper {
  width: calc(100% - 60px);
  margin: 0 0 0 12px;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods .video-methods-item .item-wrapper .intro-wrapper p {
  margin: unset;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods .video-methods-item .item-wrapper .intro-wrapper p.name {
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods .video-methods-item .item-wrapper .intro-wrapper p.desc {
  margin: 12px 0 0 0;
  font-weight: 400;
  font-size: 14px;
  color: #ccc;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods .video-methods-item.active .active-wrapper {
  opacity: 1;
  border: 2px solid #408cff;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods .video-methods-item.active .item-wrapper {
  border-color: transparent;
  background: rgba(64, 140, 255, 0.3);
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods .video-methods-item:hover:not(.active) .item-wrapper {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods button {
  margin: 20px auto 0 auto;
}
.paas-pads-show-page .el-dialog__wrapper .video-entrance-dialog .el-dialog__body .video-methods button.disabled {
  color: #4d4d4d;
  background: #222426;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page .wemeet-confirm-dialog {
  overflow-y: auto;
}
.paas-pads-show-page .wemeet-confirm-dialog .el-dialog__body .tutorial {
  margin: 20px 0 28px;
  position: relative;
}
.paas-pads-show-page .wemeet-confirm-dialog .el-dialog__body .tutorial .el-checkbox .el-checkbox__label {
  color: #999;
}
.paas-pads-show-page .wemeet-confirm-dialog .el-dialog__body .tutorial:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: -20px;
  width: calc(100% + 40px);
  height: 1px;
  background-color: #424242;
}
.paas-pads-show-page .wemeet-confirm-dialog .el-dialog__body .tips {
  padding: 0;
  margin-bottom: 0;
}
.paas-pads-show-page .wemeet-confirm-dialog .el-dialog__body .tips .tips-item {
  position: relative;
  padding-left: 10px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  list-style-type: none;
}
.paas-pads-show-page .wemeet-confirm-dialog .el-dialog__body .tips .tips-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
}
.paas-pads-show-page .wemeet-confirm-dialog .el-dialog__body .wemeet-logo-wrap {
  flex-direction: row;
  align-items: center;
  margin-top: 16px;
}
.paas-pads-show-page .wemeet-confirm-dialog .el-dialog__body .wemeet-logo-wrap img {
  height: 14px;
}
.paas-pads-show-page .wemeet-confirm-dialog .el-dialog__body .wemeet-logo-wrap .desc {
  margin-top: unset;
  padding-left: 8px;
  color: #999;
}
@media (max-width: 576px) {
  .paas-pads-show-page .wemeet-confirm-dialog .el-dialog__body .wemeet-logo-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .paas-pads-show-page .wemeet-confirm-dialog .el-dialog__body .wemeet-logo-wrap .desc {
    margin-top: 8px;
    padding-left: unset;
  }
}
@media (max-width: 375px) {
  .paas-pads-show-page .wemeet-confirm-dialog {
    max-width: 343px;
  }
}
.paas-pads-show-page .wemeet-invite-dialog .el-dialog__header {
  display: none;
}
.paas-pads-show-page .wemeet-invite-dialog .el-dialog__body .title {
  margin-top: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
}
.paas-pads-show-page .wemeet-invite-dialog .el-dialog__body .tips {
  padding: 20px 0 0;
  list-style: none;
}
.paas-pads-show-page .wemeet-invite-dialog .el-dialog__body .tips .tips-item {
  position: relative;
  padding-left: 10px;
  line-height: 20px;
  font-size: 14px;
  color: #999;
}
.paas-pads-show-page .wemeet-invite-dialog .el-dialog__body .tips .tips-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #999;
}
.paas-pads-show-page .wemeet-invite-dialog .el-dialog__footer {
  text-align: center;
}
.paas-pads-show-page .wemeet-reject-dialog .el-dialog__body .title {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.paas-pads-show-page .wemeet-reject-dialog .el-dialog__body .title i {
  color: #e87142;
  margin-right: 4px;
  font-weight: 400;
}
.paas-pads-show-page .wemeet-reject-dialog .el-dialog__body .subtitle {
  color: #fff;
  padding-left: 20px;
  margin-top: 8px;
}
.paas-pads-show-page .wemeet-join-dialog .el-dialog__body .title {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.paas-pads-show-page .wemeet-join-dialog .el-dialog__body .content-wrapper {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}
.paas-pads-show-page .wemeet-join-dialog .el-dialog__body .content-wrapper .tip-item {
  position: relative;
  padding-left: 12px;
}
.paas-pads-show-page .wemeet-join-dialog .el-dialog__body .content-wrapper .tip-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 2px;
  height: 2px;
  background: #fff;
}
.paas-pads-show-page .wemeet-join-dialog .el-dialog__body .content-wrapper .tip-item-dark {
  margin-top: 10px;
  color: #999999;
}
.paas-pads-show-page .mobile-header {
  height: 100%;
  background: #2e3033;
}
.paas-pads-show-page .mobile-header .mobile-header__finish .text, .paas-pads-show-page .mobile-header__finish .mobile-header .text, .paas-pads-show-page .mobile-header .mobile-header__console-entrance .text, .paas-pads-show-page .mobile-header__console-entrance .mobile-header .text {
  font-size: 10px;
  line-height: 14px;
  margin-top: 4px;
}
.paas-pads-show-page .mobile-header__left-column {
  height: 100%;
}
.paas-pads-show-page .mobile-header__left-column .separator {
  height: 21px;
  width: 1px;
  margin: 0 12px;
  background: rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page .mobile-header__console-entrance {
  flex-direction: column;
  font-size: 12px;
}
.paas-pads-show-page .mobile-header__console-entrance-icon {
  width: 20px;
  height: 20px;
}
.paas-pads-show-page .mobile-header__console-entrance .text {
  color: #fff;
}
.paas-pads-show-page .mobile-header__middle-column {
  flex: auto;
}
.paas-pads-show-page .mobile-header__finish {
  flex-direction: column;
  color: #d9574c;
  padding: 0 16px;
  margin-right: -16px;
}
.paas-pads-show-page .mobile-header__finish i.smb-icon {
  font-size: 16px;
}
.paas-pads-show-page .mobile-footer {
  justify-content: space-around;
  height: 100%;
}
.paas-pads-show-page .mobile-footer__item {
  flex-direction: column;
  font-size: 10px;
  line-height: 14px;
  color: #fff;
}
.paas-pads-show-page .mobile-footer__item .item-text {
  margin-top: 4px;
}
.paas-pads-show-page .mobile-paas-question {
  height: 100%;
  width: 100vw;
  overflow: hidden;
}
.paas-pads-show-page .mobile-paas-question__header {
  height: 44px;
  min-height: 44px;
  padding: 0 16px;
  background: rgba(0, 0, 0, 0.8);
}
.paas-pads-show-page .mobile-paas-question__body {
  height: calc(100% - 44px);
}
.paas-pads-show-page .mobile-paas-question__body.has-footer {
  height: calc(100% - 114px);
}
.paas-pads-show-page .mobile-paas-question__body .paas-question-editor {
  height: 100%;
}
.paas-pads-show-page .mobile-paas-question__body .paas-question-editor .follow-layout .d42-editor-header {
  display: none !important;
}
.paas-pads-show-page .mobile-paas-question__body .paas-question-editor .follow-layout .d42-editor-header + * {
  height: 100%;
}
.paas-pads-show-page .mobile-paas-question__footer {
  height: 70px;
  width: 100%;
  background-color: #17181a;
  padding: 0 16px;
}
.paas-pads-show-page .mobile-paas-question__footer .footer-left + .footer-right {
  justify-content: flex-end;
}
.paas-pads-show-page .mobile-paas-question__footer .footer-right {
  flex: auto;
}
.paas-pads-show-page .mobile-paas-question__footer .footer-right button {
  border-radius: 22px;
  padding: 11px 15px;
  line-height: 20px;
}
.paas-pads-show-page .mobile-paas-question__footer .footer-right button.smb-btn-yellow {
  background-color: #e5a82e;
}
.paas-pads-show-page .mobile-paas-question__footer .footer-right button.smb-btn-red {
  background-color: #d9574c;
}
.paas-pads-show-page .mobile-paas-question__components_trigger {
  position: fixed;
  top: 120px;
  right: 0;
  transition: 0.3s;
  border-radius: 4px 0 0 4px;
  background-color: #434547;
  padding: 12px 8px;
}
.paas-pads-show-page .mobile-paas-question__components_trigger span {
  writing-mode: vertical-lr;
  text-align: center;
  margin-bottom: 4px;
  line-height: 14px;
  color: #fff;
  font-size: 12px;
}
.paas-pads-show-page .mobile-paas-question__components_trigger.drawer-open {
  right: 90%;
  z-index: 9999;
  animation: trigger-animation 0.3s 1ms;
}
@keyframes trigger-animation {
  0% {
    right: 0;
  }
  100% {
    right: 90%;
  }
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body {
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console {
  height: 100%;
  overflow-x: hidden;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-nav-item-box {
  height: 44px;
  position: relative;
  padding-left: 8px;
  padding-right: 18px;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-nav-item-box:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -12px;
  width: calc(100% + 24px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-nav-item-box .smb-tab-nav-item {
  border: unset;
  padding-top: 10px;
  position: relative;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-nav-item-box .smb-tab-nav-item::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #d9574c;
  border-radius: 50%;
  display: none;
  position: absolute;
  right: 0;
  top: 12px;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-nav-item-box .smb-tab-nav-item.is-active {
  background: unset;
  border-radius: unset;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-nav-item-box .smb-tab-nav-item.is-active:after {
  content: "";
  position: absolute;
  left: 30%;
  bottom: -12px;
  height: 4px;
  border-radius: 2px;
  width: 40%;
  background-color: #d9574c;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box {
  height: calc(100% - 44px);
  padding: 0 8px 8px;
  background-color: #2e3033;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-shell,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-console,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-preview,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-mysql_table,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-verilog_wave,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-unittest,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-candidatorInfoPane,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-debug,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box .paas-question-shell,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box .paas-question-console,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box .paas-question-markdown-preview {
  height: 100%;
  width: 100%;
  min-width: 100%;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-shell .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-console .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-preview .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-mysql_table .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-verilog_wave .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-unittest .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-candidatorInfoPane .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-debug .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box .paas-question-shell .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box .paas-question-console .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box .paas-question-markdown-preview .xterm-viewport {
  overflow-y: auto;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-shell .xterm-screen,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-shell .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-console .xterm-screen,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-console .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-preview .xterm-screen,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-preview .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-mysql_table .xterm-screen,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-mysql_table .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-verilog_wave .xterm-screen,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-verilog_wave .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-unittest .xterm-screen,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-unittest .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .xterm-screen,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-candidatorInfoPane .xterm-screen,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-candidatorInfoPane .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-debug .xterm-screen,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-debug .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box .paas-question-shell .xterm-screen,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box .paas-question-shell .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box .paas-question-console .xterm-screen,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box .paas-question-console .xterm-viewport,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box .paas-question-markdown-preview .xterm-screen,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box .paas-question-markdown-preview .xterm-viewport {
  width: 100% !important;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-shell .paas-question-markdown-preview,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-console .paas-question-markdown-preview,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-preview .paas-question-markdown-preview,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-mysql_table .paas-question-markdown-preview,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-verilog_wave .paas-question-markdown-preview,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-unittest .paas-question-markdown-preview,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-markdown-preview,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-candidatorInfoPane .paas-question-markdown-preview,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-debug .paas-question-markdown-preview,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box .paas-question-shell .paas-question-markdown-preview,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box .paas-question-console .paas-question-markdown-preview,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box .paas-question-markdown-preview .paas-question-markdown-preview {
  overflow-y: auto;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-shell,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-console {
  margin: 0 -8px;
  width: calc(100% + 16px);
  min-width: calc(100% + 16px);
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer {
  padding: 16px;
  height: 100%;
  overflow: auto;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer {
  height: 100%;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.custom-scroll, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer.mobile-interview-record-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .mobile-interview-record-drawer__code-mirror .CodeMirror .pad-question-answer > pre.CodeMirror-vscrollbar, .paas-pads-show-page .el-drawer.mobile-interview-record-drawer .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .mobile-interview-record-drawer__code-mirror .CodeMirror .pad-question-answer > pre.CodeMirror-vscrollbar, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer.mobile-interview-record-drawer .el-drawer__body .mobile-interview-record-drawer__code-mirror .CodeMirror .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.CodeMirror-vscrollbar, .paas-pads-show-page .el-drawer.mobile-interview-record-drawer .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .mobile-interview-record-drawer__code-mirror .CodeMirror .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.CodeMirror-vscrollbar, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre#pane-unittest, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer #paas-server-error-dialog .el-collapse .pad-question-answer > pre.el-collapse-item__content, .paas-pads-show-page #paas-server-error-dialog .el-collapse .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.el-collapse-item__content, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-testcase-panel #testcase-detail-dialog .el-dialog .pad-question-answer > pre.el-dialog__body, .paas-pads-show-page .paas-testcase-panel #testcase-detail-dialog .el-dialog .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.el-dialog__body, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .drawing-question-page .drawing-question .smbMxEditorContainer.smbMxEditorContainer-theme-dark .pad-question-answer > pre.smbMxSidebarContainerExtraOuterWrapper, .paas-pads-show-page .drawing-question-page .drawing-question .smbMxEditorContainer.smbMxEditorContainer-theme-dark .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.smbMxSidebarContainerExtraOuterWrapper, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .pad-question-answer > pre.CodeMirror-vscrollbar, .paas-pads-show-page .answerarea-content-dialog .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.CodeMirror-vscrollbar,
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .pad-question-answer > pre.CodeMirror-vscrollbar,
.paas-pads-show-page .mobile-answer-area-drawer .answerarea-content-tabs.el-tabs .el-tabs__content .el-tab-pane .CodeMirror .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.CodeMirror-vscrollbar, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.answerarea-aside-panel-body, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-answer #pane-debug .pad-question-answer > pre.paas-question-debug, .paas-pads-show-page .paas-question-body .paas-question-components .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer #pane-debug .pad-question-answer > pre.paas-question-debug, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-body .paas-question-components .paas-question-shell-console .smb-tab-content-item-box #pane-debug #pane-answer .pad-question-answer > pre.paas-question-debug, .paas-pads-show-page .paas-question-body .paas-question-components .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-debug #pane-answer .pad-question-answer > pre.paas-question-debug, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-body .paas-question-components .markdown-question .pad-question-answer > pre, .paas-pads-show-page .paas-question-body .paas-question-components .markdown-question .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.paas-aside-menu, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-tab-panel .smb-tab-content-item-box > *.pad-question-answer:not(.smb-btn) > pre, .paas-pads-show-page .paas-question-tab-panel .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .smb-tab-content-item-box > *.pad-question-answer:not(.smb-btn) > pre, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.pad-footer, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .resume-body .pad-question-answer > pre.resume-content.overflow-y-auto, .paas-pads-show-page .resume-body .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.resume-content.overflow-y-auto, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .file-tree-panel .follow-layout .d42-tree-root-container .pad-question-answer > pre.rct-tree-root, .paas-pads-show-page .file-tree-panel .follow-layout .d42-tree-root-container .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.rct-tree-root, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-center .pad-question-center-body .el-tabs__content .pad-question-answer > pre.el-tab-pane__body, .paas-pads-show-page .pad-question-center .pad-question-center-body .el-tabs__content .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.el-tab-pane__body, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-center-body .pad-question-center .el-tabs__content .pad-question-answer > pre.el-tab-pane__body, .paas-pads-show-page .pad-question-center-body .pad-question-center .el-tabs__content .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.el-tab-pane__body, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-panel .markdown-question .pad-question-answer > pre, .paas-pads-show-page .paas-question-panel .markdown-question .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer #interview-assess-dialog .pad-question-answer > pre.el-dialog__body, .paas-pads-show-page #interview-assess-dialog .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.el-dialog__body, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .interview-record-dialog-drag-wrap .interview-record .pad-question-answer > pre.CodeMirror-vscrollbar, .paas-pads-show-page .interview-record-dialog-drag-wrap .interview-record .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.CodeMirror-vscrollbar, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer #select-question-dialog .el-dialog__body .paas-questions-body .pad-question-answer > pre.el-collapse, .paas-pads-show-page #select-question-dialog .el-dialog__body .paas-questions-body .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.el-collapse, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .mobile-paas-question__body .pad-question-answer > pre.paas-question-editor, .paas-pads-show-page .mobile-paas-question__body .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .pad-question-answer > pre.paas-question-editor, .paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-answer .paas-question-answer .pad-question-answer > pre {
  height: 100%;
  background-color: #2e3033;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box #pane-unittest {
  overflow: auto;
  padding-top: 12px;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box .smb-tab-content-item {
  order: 1;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box .smb-tab-content-item.is-invisible {
  order: 2;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console.panel-console-data-changed .smb-tab-nav-item-box #tab-console.smb-tab-nav-item::before {
  display: inline;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console.panel-terminal-data-changed .smb-tab-nav-item-box #tab-shell.smb-tab-nav-item::before {
  display: inline;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console-footer {
  position: absolute;
  left: 8px;
  bottom: 0;
  z-index: 10;
  height: 40px;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console-footer .paas-question-shell-console-run {
  height: 100%;
  width: fit-content;
  padding: 4px 8px;
  cursor: pointer;
}
.paas-pads-show-page .mobile-paas-question .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console-footer .paas-question-shell-console-run-icon {
  width: 16px;
  height: 16px;
}
.paas-pads-show-page .mobile-switch-programming-language {
  height: 100%;
}
.paas-pads-show-page .mobile-switch-programming-language__btn-group {
  height: 100%;
}
.paas-pads-show-page .mobile-switch-programming-language__btn-group .btn-item {
  height: 100%;
}
.paas-pads-show-page .mobile-switch-programming-language__btn-group .btn__current-language {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}
.paas-pads-show-page .mobile-switch-programming-language__btn-group .btn__current-language i.smb-icon {
  color: #999;
}
.paas-pads-show-page .mobile-switch-programming-language__btn-group .btn__desc {
  padding: 0 8px;
  margin-right: -8px;
}
.paas-pads-show-page .mobile-switch-programming-language .el-drawer__wrapper .el-drawer__container .switch-programming-language .el-drawer__header {
  height: 44px;
}
.paas-pads-show-page .mobile-switch-programming-language .el-drawer__wrapper .el-drawer__container .switch-programming-language .el-drawer__body {
  padding: 12px;
  overflow-y: auto;
}
.paas-pads-show-page .mobile-switch-programming-language .el-drawer__wrapper .el-drawer__container .switch-programming-language .el-drawer__body .switch-programming-language-item:not(:first-child) {
  margin-top: 12px;
}
.paas-pads-show-page .mobile-switch-programming-language .el-drawer__wrapper .el-drawer__container .switch-programming-language .el-drawer__body .switch-programming-language-item__header {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}
.paas-pads-show-page .mobile-switch-programming-language .el-drawer__wrapper .el-drawer__container .switch-programming-language .el-drawer__body .switch-programming-language-item__body {
  flex-wrap: wrap;
  justify-content: flex-start;
}
.paas-pads-show-page .mobile-switch-programming-language .el-drawer__wrapper .el-drawer__container .switch-programming-language .el-drawer__body .switch-programming-language-item__body .programming-language-item {
  height: 36px;
  line-height: 20px;
  margin-left: 8px;
  border-radius: 4px;
  background: #434547;
  width: calc(50% - 4px);
  font-size: 14px;
}
.paas-pads-show-page .mobile-switch-programming-language .el-drawer__wrapper .el-drawer__container .switch-programming-language .el-drawer__body .switch-programming-language-item__body .programming-language-item i.smb-icon-hot {
  color: #e57239;
  margin-left: 2px;
}
.paas-pads-show-page .mobile-switch-programming-language .el-drawer__wrapper .el-drawer__container .switch-programming-language .el-drawer__body .switch-programming-language-item__body .programming-language-item.selected {
  background: rgba(64, 140, 255, 0.1);
  border: 1px solid #408cff;
}
.paas-pads-show-page .mobile-switch-programming-language .el-drawer__wrapper .el-drawer__container .switch-programming-language .el-drawer__body .switch-programming-language-item__body .programming-language-item:nth-child(2n+1) {
  margin-left: unset;
}
.paas-pads-show-page .mobile-switch-programming-language .el-drawer__wrapper .el-drawer__container .switch-programming-language .el-drawer__body .switch-programming-language-item__body .programming-language-item:nth-child(n+3) {
  margin-top: 8px;
}
.paas-pads-show-page .mobile-paas-question-components {
  position: fixed;
  right: 0;
  top: 120px;
  transition: right 0.3s linear;
}
.paas-pads-show-page .mobile-paas-question-components.drawer-open {
  right: 90%;
  z-index: 9999;
}
.paas-pads-show-page .mobile-paas-question-components.drawer-open .mobile-paas-question-components__trigger {
  z-index: 9999;
}
.paas-pads-show-page .mobile-paas-question-components__trigger {
  border-radius: 4px 0 0 4px;
  background-color: #434547;
  padding: 12px 8px;
}
.paas-pads-show-page .mobile-paas-question-components__trigger span {
  writing-mode: vertical-lr;
  text-align: center;
  margin-bottom: 4px;
  line-height: 14px;
  color: #fff;
  font-size: 12px;
}
.paas-pads-show-page .mobile-paas-question-components .mobile-paas-question-components-drawer .el-drawer__body {
  padding: 0 12px 12px;
  height: 100%;
}
.paas-pads-show-page .mobile-paas-question-components .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console {
  height: 100%;
}
.paas-pads-show-page .mobile-paas-question-components .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-nav-item-box {
  height: 44px;
  position: relative;
}
.paas-pads-show-page .mobile-paas-question-components .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-nav-item-box:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page .mobile-paas-question-components .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-nav-item-box .smb-tab-nav-item {
  border: unset;
  padding-top: 10px;
}
.paas-pads-show-page .mobile-paas-question-components .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-nav-item-box .smb-tab-nav-item.is-active {
  background: unset;
  border-radius: unset;
}
.paas-pads-show-page .mobile-paas-question-components .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-nav-item-box .smb-tab-nav-item.is-active:after {
  content: "";
  position: absolute;
  left: 30%;
  bottom: 0;
  height: 4px;
  border-radius: 2px;
  width: 40%;
  background-color: #d9574c;
}
.paas-pads-show-page .mobile-paas-question-components .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box {
  height: calc(100% - 44px);
}
.paas-pads-show-page .mobile-paas-question-components .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box > * {
  height: 100%;
  padding-top: 12px;
}
.paas-pads-show-page .mobile-paas-question-components .mobile-paas-question-components-drawer .el-drawer__body .paas-question-shell-console .smb-tab-content-item-box > * > * {
  height: 100%;
}
.paas-pads-show-page .mobile-question-drawer {
  height: 100%;
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container {
  height: 100%;
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body {
  height: 100%;
  padding: 0 0 16px;
  overflow: hidden;
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .el-tabs__header {
  margin: 0;
  height: 44px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .el-tabs__header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20px;
  width: calc(100% + 40px);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .el-tabs__header .el-tabs__item:focus.is-active.is-focus:not(:active) {
  box-shadow: unset;
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .el-tabs__nav-wrap::after {
  content: none;
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .el-tabs__nav-wrap .el-tabs__nav-scroll {
  padding-bottom: 6px;
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .el-tabs__nav-wrap .el-tabs__active-bar {
  display: none;
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .el-tabs__nav-wrap .el-tabs__item {
  color: #fff;
  opacity: 0.45;
  font-size: 14px;
  padding: 0;
  height: auto;
  line-height: unset;
  font-weight: 400;
  border: unset;
  margin-right: 20px;
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .el-tabs__nav-wrap .el-tabs__item.is-active {
  opacity: 1;
  font-weight: 600;
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .el-tabs__nav-wrap .el-tabs__item.is-active::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 4px;
  bottom: -6px;
  left: 50%;
  background: #cc3f33;
  border-radius: 2px;
  transform: translate(-50%, 0);
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .el-tabs .mobile-question-content {
  height: calc(100% - 44px);
  overflow-y: auto;
  padding: 20px 16px;
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .paas-question-file-tree {
  padding: 12px;
  height: calc(100% - 44px);
  background-color: #3a3c40;
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .paas-question-file-tree .follow-layout .d42-tree-root-container {
  background-color: #3a3c40;
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .paas-question-file-tree .follow-layout .d42-tree-root-container .file-tree-wrap .d42-tree-root {
  background-color: #3a3c40;
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .paas-question-file-tree .follow-layout .d42-tree-root-container .file-tree-wrap .d42-tree-root .rct-tree-root {
  background-color: #3a3c40;
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .paas-question-file-tree .follow-layout .d42-tree-root-container .d42-root-toolbar {
  background-color: #3a3c40;
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .mobile-question-content {
  height: calc(100% - 44px);
}
.paas-pads-show-page .mobile-question-drawer .el-drawer__container .el-drawer__body .close-btn {
  position: absolute;
  right: 10px;
  top: 4px;
  width: 40px;
  height: 40px;
}
.paas-pads-show-page .el-drawer.mobile-resume-drawer .el-drawer__header {
  height: 52px;
}
.paas-pads-show-page .el-drawer.mobile-resume-drawer .el-drawer__header .el-drawer__close-btn {
  margin-right: -12px;
}
.paas-pads-show-page .el-drawer.mobile-resume-drawer .el-drawer__body {
  padding: 12px;
  height: calc(100% - 52px);
  overflow: hidden;
}
.paas-pads-show-page .el-drawer.mobile-resume-drawer .el-drawer__body .mobile-resume-drawer__container {
  height: 100%;
}
.paas-pads-show-page .el-drawer.mobile-resume-drawer .el-drawer__body .mobile-resume-drawer__container .mobile-resume-body {
  flex: auto;
  overflow: auto;
}
.paas-pads-show-page .el-drawer.mobile-resume-drawer .el-drawer__body .mobile-resume-drawer__container .mobile-resume-body .resume-content {
  height: 100%;
}
.paas-pads-show-page .el-drawer.mobile-resume-drawer .el-drawer__body .mobile-resume-drawer__container .mobile-resume-body .resume-content #pdf-resume-preview {
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .el-drawer.mobile-resume-drawer .el-drawer__body .mobile-resume-drawer__container .mobile-resume-body .resume-content .word-wrap {
  height: 100%;
}
.paas-pads-show-page .el-drawer.mobile-resume-drawer .el-drawer__body .mobile-resume-drawer__container .mobile-resume-body__empty {
  height: 100%;
  flex-direction: column;
  padding: 0 20px;
}
.paas-pads-show-page .el-drawer.mobile-resume-drawer .el-drawer__body .mobile-resume-drawer__container .mobile-resume-body__empty .upload-resume-limit-tip {
  margin-top: 12px;
  text-align: center;
  color: #ccc;
  font-size: 12px;
}
.paas-pads-show-page .el-drawer.mobile-resume-drawer .el-drawer__body .mobile-resume-drawer__container .mobile-resume-footer {
  padding: 20px 4px 8px;
}
.paas-pads-show-page .el-drawer.mobile-resume-drawer .el-drawer__body .mobile-resume-drawer__container .mobile-resume-footer .upload-resume-btn {
  background: rgba(255, 255, 255, 0.2);
  height: 44px;
  width: 100%;
  border-radius: 22px;
}
.paas-pads-show-page .el-drawer.mobile-interview-record-drawer .el-drawer__header {
  height: 52px;
}
.paas-pads-show-page .el-drawer.mobile-interview-record-drawer .el-drawer__header .el-drawer__close-btn {
  margin-right: -12px;
}
.paas-pads-show-page .el-drawer.mobile-interview-record-drawer .el-drawer__body {
  padding: 12px 0;
  height: calc(100% - 52px);
}
.paas-pads-show-page .el-drawer.mobile-interview-record-drawer .el-drawer__body .mobile-interview-record-drawer__code-mirror {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.paas-pads-show-page .el-drawer.mobile-interview-record-drawer .el-drawer__body .mobile-interview-record-drawer__code-mirror .CodeMirror {
  padding: 0 12px;
  background: transparent;
  border: unset;
  border-radius: 8px;
}
.paas-pads-show-page .el-drawer.mobile-interview-record-drawer .el-drawer__body .mobile-interview-record-drawer__code-mirror .CodeMirror-scroll {
  margin-bottom: -50px;
  padding-bottom: -15px;
  height: 100%;
}
.paas-pads-show-page .el-drawer.mobile-interview-record-drawer .el-drawer__body .mobile-interview-record-drawer__code-mirror pre.CodeMirror-placeholder.CodeMirror-line-like {
  color: #999;
}
.paas-pads-show-page .mobile-more-actions-drawer .el-drawer__header {
  height: 52px;
}
.paas-pads-show-page .mobile-more-actions-drawer .el-drawer__header .el-drawer__close-btn {
  margin-right: -12px;
}
.paas-pads-show-page .mobile-more-actions-drawer .el-drawer__body {
  height: calc(100% - 52px);
  padding: 0 16px 16px;
}
.paas-pads-show-page .mobile-more-actions-drawer .el-drawer__body .mobile-more-actions-drawer__pad-name {
  height: 48px;
  position: relative;
}
.paas-pads-show-page .mobile-more-actions-drawer .el-drawer__body .mobile-more-actions-drawer__pad-name:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -16px;
  width: calc(100% + 32px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page .mobile-more-actions-drawer .el-drawer__body .mobile-more-actions-drawer__pad-name .pad-name-label {
  padding-right: 8px;
  white-space: nowrap;
  color: #ccc;
  font-size: 14px;
}
.paas-pads-show-page .mobile-more-actions-drawer .el-drawer__body .mobile-more-actions-drawer__pad-name .pad-name {
  flex: auto;
  font-size: 14px;
  color: #ccc;
}
.paas-pads-show-page .mobile-more-actions-drawer .el-drawer__body .mobile-more-actions-drawer__pad-name .smb-btn, .paas-pads-show-page .mobile-more-actions-drawer .el-drawer__body .mobile-more-actions-drawer__pad-name .d42-modal-footer .d42-btn, .paas-pads-show-page .d42-modal-footer .mobile-more-actions-drawer .el-drawer__body .mobile-more-actions-drawer__pad-name .d42-btn {
  margin-left: 12px;
}
.paas-pads-show-page .mobile-more-actions-drawer .el-drawer__body .mobile-more-actions-drawer__copy-link {
  padding-top: 16px;
}
.paas-pads-show-page .mobile-more-actions-drawer .el-drawer__body .mobile-more-actions-drawer__copy-link-header {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.paas-pads-show-page .mobile-more-actions-drawer .el-drawer__body .mobile-more-actions-drawer__copy-link-body {
  margin-top: 20px;
}
.paas-pads-show-page .mobile-more-actions-drawer .el-drawer__body .mobile-more-actions-drawer__copy-link-body .copy-link--item {
  height: 52px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 20px;
}
.paas-pads-show-page .mobile-more-actions-drawer .el-drawer__body .mobile-more-actions-drawer__copy-link-body .copy-link--item:not(:first-child) {
  margin-top: 12px;
}
.paas-pads-show-page .mobile-more-actions-drawer .el-drawer__body .mobile-more-actions-drawer__copy-link-body .copy-link--avatar {
  width: 20px;
  height: 20px;
}
.paas-pads-show-page .mobile-more-actions-drawer .el-drawer__body .mobile-more-actions-drawer__copy-link-body .copy-link--text {
  flex: auto;
  padding-left: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
.paas-pads-show-page .mobile-more-actions-drawer .el-drawer__body .mobile-more-actions-drawer__copy-link-body .copy-link--action {
  height: 100%;
  padding: 0 20px;
}
.paas-pads-show-page .mobile-choose-question-drawer .el-drawer__header {
  height: 52px;
  min-height: 52px;
}
.paas-pads-show-page .mobile-choose-question-drawer .el-drawer__header .el-drawer__close-btn {
  margin-right: -12px;
}
.paas-pads-show-page .mobile-choose-question-drawer .el-drawer__body {
  padding: 0;
  height: calc(100% - 52px);
  width: 100%;
  overflow-x: hidden;
}
.paas-pads-show-page .mobile-choose-question-drawer .el-drawer__body .el-tabs {
  height: 100%;
}
.paas-pads-show-page .mobile-choose-question-drawer .el-drawer__body .el-tabs__header {
  margin: 0;
  height: 44px;
  padding: 0 16px;
}
.paas-pads-show-page .mobile-choose-question-drawer .el-drawer__body .el-tabs__header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20px;
  width: calc(100% + 40px);
  height: 1px;
  background: #383a3d;
}
.paas-pads-show-page .mobile-choose-question-drawer .el-drawer__body .el-tabs__header .el-tabs__item:focus.is-active.is-focus:not(:active) {
  box-shadow: unset;
}
.paas-pads-show-page .mobile-choose-question-drawer .el-drawer__body .el-tabs__nav-wrap::after {
  content: none;
}
.paas-pads-show-page .mobile-choose-question-drawer .el-drawer__body .el-tabs__nav-wrap .el-tabs__nav-scroll {
  padding-bottom: 6px;
}
.paas-pads-show-page .mobile-choose-question-drawer .el-drawer__body .el-tabs__nav-wrap .el-tabs__active-bar {
  display: none;
}
.paas-pads-show-page .mobile-choose-question-drawer .el-drawer__body .el-tabs__nav-wrap .el-tabs__item {
  color: #fff;
  opacity: 0.45;
  font-size: 14px;
  padding: 0;
  height: auto;
  line-height: unset;
  font-weight: 400;
  border: unset;
}
.paas-pads-show-page .mobile-choose-question-drawer .el-drawer__body .el-tabs__nav-wrap .el-tabs__item:nth-child(2), .paas-pads-show-page .mobile-choose-question-drawer .el-drawer__body .el-tabs__nav-wrap .el-tabs__item:nth-child(3) {
  margin-right: 20px;
}
.paas-pads-show-page .mobile-choose-question-drawer .el-drawer__body .el-tabs__nav-wrap .el-tabs__item.is-active {
  opacity: 1;
  font-weight: 600;
}
.paas-pads-show-page .mobile-choose-question-drawer .el-drawer__body .el-tabs__nav-wrap .el-tabs__item.is-active::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 4px;
  bottom: -6px;
  left: 50%;
  background: #cc3f33;
  border-radius: 2px;
  transform: translate(-50%, 0);
}
.paas-pads-show-page .mobile-choose-question-drawer .el-drawer__body .el-tabs .el-tabs__content {
  height: calc(100% - 44px);
  padding: 0;
}
.paas-pads-show-page .mobile-choose-question-drawer .el-drawer__body .el-tabs .el-tabs__content .el-tab-pane {
  height: 100%;
  padding: 16px 0;
}
.paas-pads-show-page .mobile-choose-pad-questions {
  height: 100%;
  overflow: auto;
  padding: 0 16px;
}
.paas-pads-show-page .mobile-choose-pad-questions__mask {
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .mobile-choose-pad-questions__header {
  flex-wrap: wrap;
}
.paas-pads-show-page .mobile-choose-pad-questions__header .el-select {
  width: calc(50% - 4px);
}
.paas-pads-show-page .mobile-choose-pad-questions__header .el-select:not(:first-child) {
  margin-left: 8px;
}
.paas-pads-show-page .mobile-choose-pad-questions__header .search-title {
  margin-top: 8px;
}
.paas-pads-show-page .mobile-choose-pad-questions__body {
  padding: 16px 0 0;
  overflow: hidden;
  min-height: calc(100% - 88px);
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body {
  height: 100%;
  min-height: 200px;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__header {
  flex-direction: column;
  height: 72px;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title {
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap {
  flex: auto;
  width: 1px;
  height: 100%;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap__collect-icon {
  height: 100%;
  padding-right: 12px;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap__collect-icon .collected {
  color: #e5a82e;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap__question-content {
  width: calc(100% - 36px);
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-type {
  width: fit-content;
  min-width: fit-content;
  text-align: right;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-op {
  padding-left: 12px;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__header .el-collapse-item__arrow {
  display: none;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-icon {
  height: 16px;
  min-height: 16px;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__content {
  padding-bottom: 20px;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__content .question-content .creator-info {
  color: #999;
  font-size: 14px;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__content .question-content-code {
  color: #ccc;
  font-size: 14px;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__content .question-content .CodeMirror {
  height: auto;
  background-color: unset;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__content .question-content .CodeMirror,
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__content .question-content pre {
  font-size: 14px;
  color: #fff;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__content .question-content .description-contents-board-content {
  display: none;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__content .question-content .description-contents-board-output {
  overflow-x: auto;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__content .question-content .content-separator {
  margin: 20px 0;
  height: 1px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .el-collapse-item .el-collapse-item__content .collapse-icon {
  padding: 8px;
  margin-bottom: -16px;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .paas-questions-body-no-data {
  flex-direction: column;
  height: 100%;
  min-height: 200px;
  font-size: 14px;
  color: #666;
}
.paas-pads-show-page .mobile-choose-pad-questions__body .pad-questions-body .paas-questions-body-no-data img {
  width: 80px;
  height: 80px;
  opacity: 0.4;
}
.paas-pads-show-page .mobile-choose-written-pad-questions {
  height: 100%;
  overflow: auto;
  padding: 0 16px;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__mask {
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__header .question-infos {
  justify-content: space-between;
  background-color: #222426;
  width: 100%;
  height: 40px;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 14px;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__header .question-infos .el-dropdown .el-dropdown-selfdefine {
  color: #fff;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__header .question-infos .el-dropdown .el-dropdown-selfdefine i {
  color: #fff;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__header .search-wrap {
  flex-wrap: wrap;
  margin-top: 8px;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__header .search-wrap .el-select {
  flex: 1;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__header .search-wrap .el-select:not(:first-child) {
  margin-left: 8px;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__header .search-wrap .search-title {
  margin-top: 8px;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body {
  padding: 16px 0 0;
  overflow: hidden;
  min-height: calc(100% - 136px);
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body {
  height: 100%;
  min-height: 200px;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .paas-questions-body-no-data {
  flex-direction: column;
  height: 100%;
  min-height: 200px;
  font-size: 14px;
  color: #666;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .paas-questions-body-no-data img {
  width: 80px;
  height: 80px;
  opacity: 0.4;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header {
  flex-direction: column;
  height: 72px;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title {
  width: 100%;
  height: 100%;
  flex-wrap: nowrap;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap {
  flex: auto;
  width: 1px;
  height: 100%;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap__collect-icon {
  padding-right: 12px;
  height: 100%;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap__collect-icon .collected {
  color: #e5a82e;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap__question-content {
  width: calc(100% - 8px);
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap__question-content.locked {
  width: calc(100% - 36px);
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-type {
  width: fit-content;
  min-width: fit-content;
  text-align: right;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-type-text {
  max-width: 120px;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-title .question-op {
  padding-left: 12px;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header .el-collapse-item__arrow {
  display: none;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__header .collapse-icon {
  height: 16px;
  min-height: 16px;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__content {
  padding-bottom: 20px;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__content .question-content .creator-info {
  color: #999;
  font-size: 14px;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__content .question-content-code {
  color: #ccc;
  font-size: 14px;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__content .question-content .CodeMirror {
  height: auto;
  background-color: unset;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__content .question-content .CodeMirror,
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__content .question-content pre {
  font-size: 14px;
  color: #fff;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__content .question-content .description-contents-board-content {
  display: none;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__content .question-content .description-contents-board-output {
  overflow-x: auto;
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__content .question-content .content-separator {
  margin: 20px 0;
  height: 1px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page .mobile-choose-written-pad-questions__body .written-pad-questions-body .el-collapse-item .el-collapse-item__content .collapse-icon {
  padding: 8px;
  margin-bottom: -16px;
}
.paas-pads-show-page .mobile-written-pad-review {
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .mobile-written-pad-review__tip {
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #999;
  text-align: center;
}
.paas-pads-show-page .mobile-written-pad-review__body {
  padding: 16px 0 0;
  overflow: hidden;
  height: 100%;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap {
  height: 100%;
  overflow: auto;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .empty {
  background-color: transparent;
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header {
  flex-direction: column;
  height: 90px;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .collapse-title {
  width: 100%;
  line-height: 100%;
  flex-wrap: nowrap;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap {
  flex: auto;
  width: 1px;
  height: 100%;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap__collect-icon {
  padding-right: 12px;
  height: 100%;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap__collect-icon .collected {
  color: #e5a82e;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap__question-content {
  width: calc(100% - 8px);
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .collapse-title .question-wrap__question-content.locked {
  width: calc(100% - 36px);
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .collapse-title .question-type {
  width: fit-content;
  min-width: fit-content;
  text-align: right;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .collapse-title .question-op {
  padding-left: 12px;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .written-pad-question-info {
  margin-top: 12px;
  width: 100%;
  line-height: 100%;
  justify-content: space-around;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .written-pad-question-info .score,
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .written-pad-question-info .duration {
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #999;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .el-collapse-item__arrow {
  display: none;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__header .collapse-icon {
  height: 16px;
  min-height: 16px;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__content {
  padding-bottom: 20px;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__content .question-content .creator-info {
  color: #999;
  font-size: 14px;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__content .question-content-code {
  color: #ccc;
  font-size: 14px;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__content .question-content .CodeMirror {
  height: auto;
  background-color: unset;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__content .question-content .CodeMirror,
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__content .question-content pre {
  font-size: 14px;
  color: #fff;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__content .question-content .description-contents-board-content {
  display: none;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__content .question-content .description-contents-board-output {
  overflow-x: auto;
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__content .question-content .content-separator {
  margin: 20px 0;
  height: 1px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page .mobile-written-pad-review__body .written-pad-review-wrap .el-collapse-item .el-collapse-item__content .collapse-icon {
  padding: 8px;
  margin-bottom: -16px;
}
.paas-pads-show-page .smb-btn, .paas-pads-show-page .d42-modal-footer .d42-btn {
  padding: 7px 14px;
  line-height: 20px;
}
.paas-pads-show-page .smb-btn-outline, .paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group button, .paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search button:not([name=close]), .paas-pads-show-page .d42-modal-footer .d42-btn.d42-btn-default {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.paas-pads-show-page .smb-btn-outline:not(.disabled):not(:disabled):hover, .paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group button:not(.disabled):not(:disabled):hover, .paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search button:not(.disabled):not(:disabled):hover:not([name=close]), .paas-pads-show-page .d42-modal-footer .d42-btn.d42-btn-default:not(.disabled):not(:disabled):hover, .paas-pads-show-page .smb-btn-outline:not(.disabled):not(:disabled).active, .paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group button:not(.disabled):not(:disabled).active, .paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search button:not(.disabled):not(:disabled).active:not([name=close]), .paas-pads-show-page .d42-modal-footer .d42-btn.d42-btn-default:not(.disabled):not(:disabled).active, .paas-pads-show-page .smb-btn-outline:not(.disabled):not(:disabled):active, .paas-pads-show-page .el-dropdown:not(.white-theme) .el-button-group button:not(.disabled):not(:disabled):active, .paas-pads-show-page .d42-code-editor-layout .cm-panels.cm-panels-top .cm-panel.cm-search button:not(.disabled):not(:disabled):active:not([name=close]), .paas-pads-show-page .d42-modal-footer .d42-btn.d42-btn-default:not(.disabled):not(:disabled):active, .paas-pads-show-page .smb-btn-outline:not(.disabled):not(:disabled):not([href]):hover, .paas-pads-show-page .smb-btn-outline:not(.disabled):not(:disabled):not([href]):active, .paas-pads-show-page .smb-btn-outline:not(.disabled):not(:disabled):not([href]).active {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.paas-pads-show-page .smb-btn-with-icon > i {
  font-size: 16px;
}
.paas-pads-show-page .smb-btn.color-helper-red, .paas-pads-show-page .d42-modal-footer .color-helper-red.d42-btn {
  color: #d9574c;
}
.paas-pads-show-page .smb-btn.color-helper-red:not(.disabled):not(:disabled):hover, .paas-pads-show-page .d42-modal-footer .color-helper-red.d42-btn:not(.disabled):not(:disabled):hover {
  color: #d9574c;
}
.paas-pads-show-page .smb-btn.disabled, .paas-pads-show-page .d42-modal-footer .disabled.d42-btn, .paas-pads-show-page .smb-btn:disabled, .paas-pads-show-page .d42-modal-footer .d42-btn:disabled {
  border-color: rgba(255, 255, 255, 0.1);
  color: #666;
  background-color: rgba(255, 255, 255, 0.05);
  cursor: not-allowed;
}
.paas-pads-show-page .smb-btn.disabled:hover, .paas-pads-show-page .d42-modal-footer .disabled.d42-btn:hover, .paas-pads-show-page .smb-btn:disabled:hover, .paas-pads-show-page .d42-modal-footer .d42-btn:disabled:hover {
  color: #666;
  background-color: rgba(255, 255, 255, 0.05);
}
.paas-pads-show-page .smb-btn-md {
  padding: 3px 7px;
}
.paas-pads-show-page .paas-verilog-wave,
.paas-pads-show-page .paas-testcase-verilog-body-panel {
  /* jsTree default theme */
  /*!
   * jQuery contextMenu - Plugin for simple contextMenu handling
   *
   * Version: v2.9.2
   *
   * Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
   * Web: http://swisnl.github.io/jQuery-contextMenu/
   *
   * Copyright (c) 2011-2020 SWIS BV and contributors
   *
   * Licensed under
   *   MIT License http://www.opensource.org/licenses/mit-license
   *
   * Date: 2020-05-13T13:55:37.023Z
   */
  /**
   * Inputs
   */
  /* vertically align inside labels */
  /* position checkboxes and radios as icons */
  /*! jQuery UI - v1.12.1 - 2016-09-14
  * http://jqueryui.com
  * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
  * To view and modify this theme, visit http://jqueryui.com/themeroller/?bgShadowXPos=&bgOverlayXPos=&bgErrorXPos=&bgHighlightXPos=&bgContentXPos=&bgHeaderXPos=&bgActiveXPos=&bgHoverXPos=&bgDefaultXPos=&bgShadowYPos=&bgOverlayYPos=&bgErrorYPos=&bgHighlightYPos=&bgContentYPos=&bgHeaderYPos=&bgActiveYPos=&bgHoverYPos=&bgDefaultYPos=&bgShadowRepeat=&bgOverlayRepeat=&bgErrorRepeat=&bgHighlightRepeat=&bgContentRepeat=&bgHeaderRepeat=&bgActiveRepeat=&bgHoverRepeat=&bgDefaultRepeat=&iconsHover=url(https://assets.showmebug.com/smb-rails/f10d173/%22images%2Fui-icons_555555_256x240.png%22)&iconsHighlight=url(https://assets.showmebug.com/smb-rails/f10d173/%22images%2Fui-icons_777620_256x240.png%22)&iconsHeader=url(https://assets.showmebug.com/smb-rails/f10d173/%22images%2Fui-icons_444444_256x240.png%22)&iconsError=url(https://assets.showmebug.com/smb-rails/f10d173/%22images%2Fui-icons_cc0000_256x240.png%22)&iconsDefault=url(https://assets.showmebug.com/smb-rails/f10d173/%22images%2Fui-icons_777777_256x240.png%22)&iconsContent=url(https://assets.showmebug.com/smb-rails/f10d173/%22images%2Fui-icons_444444_256x240.png%22)&iconsActive=url(https://assets.showmebug.com/smb-rails/f10d173/%22images%2Fui-icons_ffffff_256x240.png%22)&bgImgUrlShadow=&bgImgUrlOverlay=&bgImgUrlHover=&bgImgUrlHighlight=&bgImgUrlHeader=&bgImgUrlError=&bgImgUrlDefault=&bgImgUrlContent=&bgImgUrlActive=&opacityFilterShadow=Alpha(Opacity%3D30)&opacityFilterOverlay=Alpha(Opacity%3D30)&opacityShadowPerc=30&opacityOverlayPerc=30&iconColorHover=%23555555&iconColorHighlight=%23777620&iconColorHeader=%23444444&iconColorError=%23cc0000&iconColorDefault=%23777777&iconColorContent=%23444444&iconColorActive=%23ffffff&bgImgOpacityShadow=0&bgImgOpacityOverlay=0&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityContent=75&bgImgOpacityHeader=75&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgTextureShadow=flat&bgTextureOverlay=flat&bgTextureError=flat&bgTextureHighlight=flat&bgTextureContent=flat&bgTextureHeader=flat&bgTextureActive=flat&bgTextureHover=flat&bgTextureDefault=flat&cornerRadius=3px&fwDefault=normal&ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&cornerRadiusShadow=8px&thicknessShadow=5px&offsetLeftShadow=0px&offsetTopShadow=0px&opacityShadow=.3&bgColorShadow=%23666666&opacityOverlay=.3&bgColorOverlay=%23aaaaaa&fcError=%235f3f3f&borderColorError=%23f1a899&bgColorError=%23fddfdf&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgColorHighlight=%23fffa90&fcContent=%23333333&borderColorContent=%23dddddd&bgColorContent=%23ffffff&fcHeader=%23333333&borderColorHeader=%23dddddd&bgColorHeader=%23e9e9e9&fcActive=%23ffffff&borderColorActive=%23003eff&bgColorActive=%23007fff&fcHover=%232b2b2b&borderColorHover=%23cccccc&bgColorHover=%23ededed&fcDefault=%23454545&borderColorDefault=%23c5c5c5&bgColorDefault=%23f6f6f6
  * Copyright jQuery Foundation and other contributors; Licensed MIT */
  /* Layout helpers
  ----------------------------------*/
  /* Interaction Cues
  ----------------------------------*/
  /* Icons
  ----------------------------------*/
  /* Misc visuals
  ----------------------------------*/
  /* Overlays */
  /* icon support */
  /* left-aligned */
  /* right-aligned */
  /* to make room for the icon, a width needs to be set here */
  /* no icon support for input elements */
  /* button icon element(s) */
  /* workarounds */
  /* Support: Firefox 5 - 40 */
  /* Spinner specific style fixes */
  /* with multiple calendars */
  /* RTL support */
  /* Icons */
  /* support: IE8 - See #6727 */
  /* more specificity required here to override default borders */
  /* Component containers
  ----------------------------------*/
  /* Interaction states
  ----------------------------------*/
  /* Interaction Cues
  ----------------------------------*/
  /* Icons
  ----------------------------------*/
  /* states and images */
  /* positioning */
  /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
  /* Misc visuals
  ----------------------------------*/
  /* Corner radius */
  /* Overlays */
}
.paas-pads-show-page .paas-verilog-wave .jstree-node,
.paas-pads-show-page .paas-verilog-wave .jstree-children,
.paas-pads-show-page .paas-verilog-wave .jstree-container-ul,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-children,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-container-ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style-image: none;
}
.paas-pads-show-page .paas-verilog-wave .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-node {
  white-space: nowrap;
}
.paas-pads-show-page .paas-verilog-wave .jstree-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-anchor {
  display: inline-block;
  color: black;
  white-space: nowrap;
  padding: 0 4px 0 1px;
  margin: 0;
  vertical-align: top;
}
.paas-pads-show-page .paas-verilog-wave .jstree-anchor:focus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-anchor:focus {
  outline: 0;
}
.paas-pads-show-page .paas-verilog-wave .jstree-anchor,
.paas-pads-show-page .paas-verilog-wave .jstree-anchor:link,
.paas-pads-show-page .paas-verilog-wave .jstree-anchor:visited,
.paas-pads-show-page .paas-verilog-wave .jstree-anchor:hover,
.paas-pads-show-page .paas-verilog-wave .jstree-anchor:active,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-anchor:link,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-anchor:visited,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-anchor:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-anchor:active {
  text-decoration: none;
  color: inherit;
}
.paas-pads-show-page .paas-verilog-wave .jstree-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-icon {
  display: inline-block;
  text-decoration: none;
  margin: 0;
  padding: 0;
  vertical-align: top;
  text-align: center;
}
.paas-pads-show-page .paas-verilog-wave .jstree-icon:empty,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-icon:empty {
  display: inline-block;
  text-decoration: none;
  margin: 0;
  padding: 0;
  vertical-align: top;
  text-align: center;
}
.paas-pads-show-page .paas-verilog-wave .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-ocl {
  cursor: pointer;
}
.paas-pads-show-page .paas-verilog-wave .jstree-leaf > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-leaf > .jstree-ocl {
  cursor: default;
}
.paas-pads-show-page .paas-verilog-wave .jstree .jstree-open > .jstree-children,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree .jstree-open > .jstree-children {
  display: block;
}
.paas-pads-show-page .paas-verilog-wave .jstree .jstree-closed > .jstree-children,
.paas-pads-show-page .paas-verilog-wave .jstree .jstree-leaf > .jstree-children,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree .jstree-closed > .jstree-children,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree .jstree-leaf > .jstree-children {
  display: none;
}
.paas-pads-show-page .paas-verilog-wave .jstree-anchor > .jstree-themeicon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-anchor > .jstree-themeicon {
  margin-right: 2px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-no-icons .jstree-themeicon,
.paas-pads-show-page .paas-verilog-wave .jstree-anchor > .jstree-themeicon-hidden,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-no-icons .jstree-themeicon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-anchor > .jstree-themeicon-hidden {
  display: none;
}
.paas-pads-show-page .paas-verilog-wave .jstree-hidden,
.paas-pads-show-page .paas-verilog-wave .jstree-node.jstree-hidden,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-hidden,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-node.jstree-hidden {
  display: none;
}
.paas-pads-show-page .paas-verilog-wave .jstree-rtl .jstree-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-rtl .jstree-anchor {
  padding: 0 1px 0 4px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-rtl .jstree-anchor > .jstree-themeicon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-rtl .jstree-anchor > .jstree-themeicon {
  margin-left: 2px;
  margin-right: 0;
}
.paas-pads-show-page .paas-verilog-wave .jstree-rtl .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-rtl .jstree-node {
  margin-left: 0;
}
.paas-pads-show-page .paas-verilog-wave .jstree-rtl .jstree-container-ul > .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-rtl .jstree-container-ul > .jstree-node {
  margin-right: 0;
}
.paas-pads-show-page .paas-verilog-wave .jstree-wholerow-ul,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-wholerow-ul {
  position: relative;
  display: inline-block;
  min-width: 100%;
}
.paas-pads-show-page .paas-verilog-wave .jstree-wholerow-ul .jstree-leaf > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-wholerow-ul .jstree-leaf > .jstree-ocl {
  cursor: pointer;
}
.paas-pads-show-page .paas-verilog-wave .jstree-wholerow-ul .jstree-anchor,
.paas-pads-show-page .paas-verilog-wave .jstree-wholerow-ul .jstree-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-wholerow-ul .jstree-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-wholerow-ul .jstree-icon {
  position: relative;
}
.paas-pads-show-page .paas-verilog-wave .jstree-wholerow-ul .jstree-wholerow,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-wholerow-ul .jstree-wholerow {
  width: 100%;
  cursor: pointer;
  position: absolute;
  left: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.paas-pads-show-page .paas-verilog-wave .jstree-contextmenu .jstree-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-contextmenu .jstree-anchor {
  -webkit-user-select: none;
  /* disable selection/Copy of UIWebView */
  -webkit-touch-callout: none;
  /* disable the IOS popup when long-press on a link */
  user-select: none;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context {
  display: none;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context,
.paas-pads-show-page .paas-verilog-wave .vakata-context ul,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context ul {
  margin: 0;
  padding: 2px;
  position: absolute;
  background: #f5f5f5;
  border: 1px solid #979797;
  box-shadow: 2px 2px 2px #999999;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context ul,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context ul {
  list-style: none;
  left: 100%;
  margin-top: -2.7em;
  margin-left: -4px;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context .vakata-context-right ul,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context .vakata-context-right ul {
  left: auto;
  right: 100%;
  margin-left: auto;
  margin-right: -4px;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context li,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context li {
  list-style: none;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context li > a,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context li > a {
  display: block;
  padding: 0 2em 0 2em;
  text-decoration: none;
  width: auto;
  color: black;
  white-space: nowrap;
  line-height: 2.4em;
  text-shadow: 1px 1px 0 white;
  border-radius: 1px;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context li > a:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context li > a:hover {
  position: relative;
  background-color: #e8eff7;
  box-shadow: 0 0 2px #0a6aa1;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context li > a.vakata-context-parent,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context li > a.vakata-context-parent {
  background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAIORI4JlrqN1oMSnmmZDQUAOw==");
  background-position: right center;
  background-repeat: no-repeat;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context li > a:focus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context li > a:focus {
  outline: 0;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context .vakata-context-no-icons,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context .vakata-context-no-icons {
  margin-left: 0;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context .vakata-context-hover > a,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context .vakata-context-hover > a {
  position: relative;
  background-color: #e8eff7;
  box-shadow: 0 0 2px #0a6aa1;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context .vakata-context-separator > a,
.paas-pads-show-page .paas-verilog-wave .vakata-context .vakata-context-separator > a:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context .vakata-context-separator > a,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context .vakata-context-separator > a:hover {
  background: white;
  border: 0;
  border-top: 1px solid #e2e3e3;
  height: 1px;
  min-height: 1px;
  max-height: 1px;
  padding: 0;
  margin: 0 0 0 2.4em;
  border-left: 1px solid #e0e0e0;
  text-shadow: 0 0 0 transparent;
  box-shadow: 0 0 0 transparent;
  border-radius: 0;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context .vakata-contextmenu-disabled a,
.paas-pads-show-page .paas-verilog-wave .vakata-context .vakata-contextmenu-disabled a:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context .vakata-contextmenu-disabled a,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context .vakata-contextmenu-disabled a:hover {
  color: silver;
  background-color: transparent;
  border: 0;
  box-shadow: 0 0 0;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context .vakata-contextmenu-disabled > a > i,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context .vakata-contextmenu-disabled > a > i {
  filter: grayscale(100%);
}
.paas-pads-show-page .paas-verilog-wave .vakata-context li > a > i,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context li > a > i {
  text-decoration: none;
  display: inline-block;
  width: 2.4em;
  height: 2.4em;
  background: transparent;
  margin: 0 0 0 -2em;
  vertical-align: top;
  text-align: center;
  line-height: 2.4em;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context li > a > i:empty,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context li > a > i:empty {
  width: 2.4em;
  line-height: 2.4em;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context li > a .vakata-contextmenu-sep,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context li > a .vakata-contextmenu-sep {
  display: inline-block;
  width: 1px;
  height: 2.4em;
  background: white;
  margin: 0 0.5em 0 0;
  border-left: 1px solid #e2e3e3;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context .vakata-contextmenu-shortcut,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context .vakata-contextmenu-shortcut {
  font-size: 0.8em;
  color: silver;
  opacity: 0.5;
  display: none;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context-rtl ul,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context-rtl ul {
  left: auto;
  right: 100%;
  margin-left: auto;
  margin-right: -4px;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context-rtl li > a.vakata-context-parent,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context-rtl li > a.vakata-context-parent {
  background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAINjI+AC7rWHIsPtmoxLAA7");
  background-position: left center;
  background-repeat: no-repeat;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context-rtl .vakata-context-separator > a,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context-rtl .vakata-context-separator > a {
  margin: 0 2.4em 0 0;
  border-left: 0;
  border-right: 1px solid #e2e3e3;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context-rtl .vakata-context-left ul,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context-rtl .vakata-context-left ul {
  right: auto;
  left: 100%;
  margin-left: -4px;
  margin-right: auto;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context-rtl li > a > i,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context-rtl li > a > i {
  margin: 0 -2em 0 0;
}
.paas-pads-show-page .paas-verilog-wave .vakata-context-rtl li > a .vakata-contextmenu-sep,
.paas-pads-show-page .paas-testcase-verilog-body-panel .vakata-context-rtl li > a .vakata-contextmenu-sep {
  margin: 0 0 0 0.5em;
  border-left-color: white;
  background: #e2e3e3;
}
.paas-pads-show-page .paas-verilog-wave #jstree-marker,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-marker {
  position: absolute;
  top: 0;
  left: 0;
  margin: -5px 0 0 0;
  padding: 0;
  border-right: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd {
  line-height: 16px;
  margin: 0;
  padding: 4px;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd .jstree-icon,
.paas-pads-show-page .paas-verilog-wave #jstree-dnd .jstree-copy,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd .jstree-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd .jstree-copy {
  display: inline-block;
  text-decoration: none;
  margin: 0 2px 0 0;
  padding: 0;
  width: 16px;
  height: 16px;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd .jstree-ok,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd .jstree-ok {
  background: green;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd .jstree-er,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd .jstree-er {
  background: red;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd .jstree-copy,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd .jstree-copy {
  margin: 0 2px 0 2px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-node,
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-icon {
  background-repeat: no-repeat;
  background-color: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-anchor,
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-animated,
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-wholerow,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-animated,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-wholerow {
  transition: background-color 0.15s, box-shadow 0.15s;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-hovered,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-hovered {
  background: #e7f4f9;
  border-radius: 2px;
  box-shadow: inset 0 0 1px #cccccc;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-context,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-context {
  background: #e7f4f9;
  border-radius: 2px;
  box-shadow: inset 0 0 1px #cccccc;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-clicked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-clicked {
  background: #beebff;
  border-radius: 2px;
  box-shadow: inset 0 0 1px #999999;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-no-icons .jstree-anchor > .jstree-themeicon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-no-icons .jstree-anchor > .jstree-themeicon {
  display: none;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-disabled,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-disabled {
  background: transparent;
  color: #666666;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-disabled.jstree-hovered,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-disabled.jstree-hovered {
  background: transparent;
  box-shadow: none;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-disabled.jstree-clicked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-disabled.jstree-clicked {
  background: #efefef;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-disabled > .jstree-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-disabled > .jstree-icon {
  opacity: 0.8;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='jstree-grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#jstree-grayscale");
  /* Firefox 10+ */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+ & Safari 6+ */
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-search,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-search {
  font-style: italic;
  color: #8b0000;
  font-weight: bold;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-no-checkboxes .jstree-checkbox,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-no-checkboxes .jstree-checkbox {
  display: none !important;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default.jstree-checkbox-no-clicked .jstree-clicked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default.jstree-checkbox-no-clicked .jstree-clicked {
  background: transparent;
  box-shadow: none;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered {
  background: #e7f4f9;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered {
  background: #e7f4f9;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default > .jstree-striped,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default > .jstree-striped {
  min-width: 100%;
  display: inline-block;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAMAAAB/qqA+AAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMNAMM9s3UAAAAXSURBVHjajcEBAQAAAIKg/H/aCQZ70AUBjAATb6YPDgAAAABJRU5ErkJggg==") left top repeat;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default > .jstree-wholerow-ul .jstree-hovered,
.paas-pads-show-page .paas-verilog-wave .jstree-default > .jstree-wholerow-ul .jstree-clicked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default > .jstree-wholerow-ul .jstree-hovered,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default > .jstree-wholerow-ul .jstree-clicked {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-wholerow,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-wholerow {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-wholerow-hovered,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-wholerow-hovered {
  background: #e7f4f9;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-wholerow-clicked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-wholerow-clicked {
  background: #beebff;
  background: -webkit-linear-gradient(top, #beebff 0%, #a8e4ff 100%);
  background: linear-gradient(to bottom, #beebff 0%, #a8e4ff 100%);
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-node {
  min-height: 24px;
  line-height: 24px;
  margin-left: 24px;
  min-width: 24px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-anchor {
  line-height: 24px;
  height: 24px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-icon {
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-icon:empty,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-icon:empty {
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default.jstree-rtl .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default.jstree-rtl .jstree-node {
  margin-right: 24px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-wholerow,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-wholerow {
  height: 24px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-node,
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-icon {
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-32px-0633b4a6fe8502c6a1f165b41ae48da7e681cb3c8c464cf5bd63e22935359782.png);
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-node {
  background-position: -292px -4px;
  background-repeat: repeat-y;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-last,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-last {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-open > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-open > .jstree-ocl {
  background-position: -132px -4px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-closed > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-closed > .jstree-ocl {
  background-position: -100px -4px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-leaf > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-leaf > .jstree-ocl {
  background-position: -68px -4px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-themeicon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-themeicon {
  background-position: -260px -4px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default > .jstree-no-dots .jstree-node,
.paas-pads-show-page .paas-verilog-wave .jstree-default > .jstree-no-dots .jstree-leaf > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default > .jstree-no-dots .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default > .jstree-no-dots .jstree-open > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-position: -36px -4px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default > .jstree-no-dots .jstree-closed > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-position: -4px -4px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-disabled,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-disabled {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-disabled.jstree-hovered,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-disabled.jstree-hovered {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-disabled.jstree-clicked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-disabled.jstree-clicked {
  background: #efefef;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-checkbox,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-checkbox {
  background-position: -164px -4px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-checkbox:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-checkbox:hover {
  background-position: -164px -36px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-checked > .jstree-checkbox,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-checked > .jstree-checkbox {
  background-position: -228px -4px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-checked > .jstree-checkbox:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-checked > .jstree-checkbox:hover {
  background-position: -228px -36px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-anchor > .jstree-undetermined,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-anchor > .jstree-undetermined {
  background-position: -196px -4px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-anchor > .jstree-undetermined:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-anchor > .jstree-undetermined:hover {
  background-position: -196px -36px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-checkbox-disabled,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-checkbox-disabled {
  opacity: 0.8;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='jstree-grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#jstree-grayscale");
  /* Firefox 10+ */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+ & Safari 6+ */
}
.paas-pads-show-page .paas-verilog-wave .jstree-default > .jstree-striped,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default > .jstree-striped {
  background-size: auto 48px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default.jstree-rtl .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default.jstree-rtl .jstree-node {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
  background-position: 100% 1px;
  background-repeat: repeat-y;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default.jstree-rtl .jstree-last,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default.jstree-rtl .jstree-last {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default.jstree-rtl .jstree-open > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default.jstree-rtl .jstree-open > .jstree-ocl {
  background-position: -132px -36px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default.jstree-rtl .jstree-closed > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default.jstree-rtl .jstree-closed > .jstree-ocl {
  background-position: -100px -36px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default.jstree-rtl .jstree-leaf > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default.jstree-rtl .jstree-leaf > .jstree-ocl {
  background-position: -68px -36px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default.jstree-rtl > .jstree-no-dots .jstree-node,
.paas-pads-show-page .paas-verilog-wave .jstree-default.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default.jstree-rtl > .jstree-no-dots .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-position: -36px -36px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-position: -4px -36px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-themeicon-custom,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-themeicon-custom {
  background-color: transparent;
  background-image: none;
  background-position: 0 0;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default > .jstree-container-ul .jstree-loading > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default > .jstree-container-ul .jstree-loading > .jstree-ocl {
  background: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-throbber-e611bd10da5752d2c77c75664d6ec0cc16491d9d1d85012a753624374ccfeeae.gif) center center no-repeat;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-file,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-file {
  background: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-32px-0633b4a6fe8502c6a1f165b41ae48da7e681cb3c8c464cf5bd63e22935359782.png) -100px -68px no-repeat;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-folder,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-folder {
  background: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-32px-0633b4a6fe8502c6a1f165b41ae48da7e681cb3c8c464cf5bd63e22935359782.png) -260px -4px no-repeat;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default > .jstree-container-ul > .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default > .jstree-container-ul > .jstree-node {
  margin-left: 0;
  margin-right: 0;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-default,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-default {
  line-height: 24px;
  padding: 0 4px;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-default .jstree-ok,
.paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-default .jstree-er,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-default .jstree-ok,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-default .jstree-er {
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-32px-0633b4a6fe8502c6a1f165b41ae48da7e681cb3c8c464cf5bd63e22935359782.png);
  background-repeat: no-repeat;
  background-color: transparent;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-default i,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-default i {
  background: transparent;
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-default .jstree-ok,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-default .jstree-ok {
  background-position: -4px -68px;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-default .jstree-er,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-default .jstree-er {
  background-position: -36px -68px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-ellipsis,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-ellipsis {
  overflow: hidden;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default .jstree-ellipsis .jstree-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default .jstree-ellipsis .jstree-anchor {
  width: calc(100% - 29px);
  text-overflow: ellipsis;
  overflow: hidden;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default.jstree-rtl .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default.jstree-rtl .jstree-node {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
}
.paas-pads-show-page .paas-verilog-wave .jstree-default.jstree-rtl .jstree-last,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default.jstree-rtl .jstree-last {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-node {
  min-height: 18px;
  line-height: 18px;
  margin-left: 18px;
  min-width: 18px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-anchor {
  line-height: 18px;
  height: 18px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-icon {
  width: 18px;
  height: 18px;
  line-height: 18px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-icon:empty,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-icon:empty {
  width: 18px;
  height: 18px;
  line-height: 18px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small.jstree-rtl .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small.jstree-rtl .jstree-node {
  margin-right: 18px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-wholerow,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-wholerow {
  height: 18px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-node,
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-icon {
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-32px-0633b4a6fe8502c6a1f165b41ae48da7e681cb3c8c464cf5bd63e22935359782.png);
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-node {
  background-position: -295px -7px;
  background-repeat: repeat-y;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-last,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-last {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-open > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-open > .jstree-ocl {
  background-position: -135px -7px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-closed > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-closed > .jstree-ocl {
  background-position: -103px -7px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-leaf > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-leaf > .jstree-ocl {
  background-position: -71px -7px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-themeicon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-themeicon {
  background-position: -263px -7px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small > .jstree-no-dots .jstree-node,
.paas-pads-show-page .paas-verilog-wave .jstree-default-small > .jstree-no-dots .jstree-leaf > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small > .jstree-no-dots .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small > .jstree-no-dots .jstree-open > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-position: -39px -7px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small > .jstree-no-dots .jstree-closed > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-position: -7px -7px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-disabled,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-disabled {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-disabled.jstree-hovered,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-disabled.jstree-hovered {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-disabled.jstree-clicked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-disabled.jstree-clicked {
  background: #efefef;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-checkbox,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-checkbox {
  background-position: -167px -7px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-checkbox:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-checkbox:hover {
  background-position: -167px -39px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-checked > .jstree-checkbox,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-checked > .jstree-checkbox {
  background-position: -231px -7px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-checked > .jstree-checkbox:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-checked > .jstree-checkbox:hover {
  background-position: -231px -39px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-anchor > .jstree-undetermined,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-anchor > .jstree-undetermined {
  background-position: -199px -7px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-anchor > .jstree-undetermined:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-anchor > .jstree-undetermined:hover {
  background-position: -199px -39px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-checkbox-disabled,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-checkbox-disabled {
  opacity: 0.8;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='jstree-grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#jstree-grayscale");
  /* Firefox 10+ */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+ & Safari 6+ */
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small > .jstree-striped,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small > .jstree-striped {
  background-size: auto 36px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small.jstree-rtl .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small.jstree-rtl .jstree-node {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
  background-position: 100% 1px;
  background-repeat: repeat-y;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small.jstree-rtl .jstree-last,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small.jstree-rtl .jstree-last {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small.jstree-rtl .jstree-open > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small.jstree-rtl .jstree-open > .jstree-ocl {
  background-position: -135px -39px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small.jstree-rtl .jstree-closed > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small.jstree-rtl .jstree-closed > .jstree-ocl {
  background-position: -103px -39px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small.jstree-rtl .jstree-leaf > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small.jstree-rtl .jstree-leaf > .jstree-ocl {
  background-position: -71px -39px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-node,
.paas-pads-show-page .paas-verilog-wave .jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-position: -39px -39px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-position: -7px -39px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-themeicon-custom,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-themeicon-custom {
  background-color: transparent;
  background-image: none;
  background-position: 0 0;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small > .jstree-container-ul .jstree-loading > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small > .jstree-container-ul .jstree-loading > .jstree-ocl {
  background: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-throbber-e611bd10da5752d2c77c75664d6ec0cc16491d9d1d85012a753624374ccfeeae.gif) center center no-repeat;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-file,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-file {
  background: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-32px-0633b4a6fe8502c6a1f165b41ae48da7e681cb3c8c464cf5bd63e22935359782.png) -103px -71px no-repeat;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-folder,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-folder {
  background: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-32px-0633b4a6fe8502c6a1f165b41ae48da7e681cb3c8c464cf5bd63e22935359782.png) -263px -7px no-repeat;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small > .jstree-container-ul > .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small > .jstree-container-ul > .jstree-node {
  margin-left: 0;
  margin-right: 0;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-default-small,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-default-small {
  line-height: 18px;
  padding: 0 4px;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-default-small .jstree-ok,
.paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-default-small .jstree-er,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-default-small .jstree-ok,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-default-small .jstree-er {
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-32px-0633b4a6fe8502c6a1f165b41ae48da7e681cb3c8c464cf5bd63e22935359782.png);
  background-repeat: no-repeat;
  background-color: transparent;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-default-small i,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-default-small i {
  background: transparent;
  width: 18px;
  height: 18px;
  line-height: 18px;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-default-small .jstree-ok,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-default-small .jstree-ok {
  background-position: -7px -71px;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-default-small .jstree-er,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-default-small .jstree-er {
  background-position: -39px -71px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-ellipsis,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-ellipsis {
  overflow: hidden;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small .jstree-ellipsis .jstree-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small .jstree-ellipsis .jstree-anchor {
  width: calc(100% - 23px);
  text-overflow: ellipsis;
  overflow: hidden;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small.jstree-rtl .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small.jstree-rtl .jstree-node {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg==");
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-small.jstree-rtl .jstree-last,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-small.jstree-rtl .jstree-last {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-node {
  min-height: 32px;
  line-height: 32px;
  margin-left: 32px;
  min-width: 32px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-anchor {
  line-height: 32px;
  height: 32px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-icon {
  width: 32px;
  height: 32px;
  line-height: 32px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-icon:empty,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-icon:empty {
  width: 32px;
  height: 32px;
  line-height: 32px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large.jstree-rtl .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large.jstree-rtl .jstree-node {
  margin-right: 32px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-wholerow,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-wholerow {
  height: 32px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-node,
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-icon {
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-32px-0633b4a6fe8502c6a1f165b41ae48da7e681cb3c8c464cf5bd63e22935359782.png);
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-node {
  background-position: -288px 0px;
  background-repeat: repeat-y;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-last,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-last {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-open > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-open > .jstree-ocl {
  background-position: -128px 0px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-closed > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-closed > .jstree-ocl {
  background-position: -96px 0px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-leaf > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-leaf > .jstree-ocl {
  background-position: -64px 0px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-themeicon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-themeicon {
  background-position: -256px 0px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large > .jstree-no-dots .jstree-node,
.paas-pads-show-page .paas-verilog-wave .jstree-default-large > .jstree-no-dots .jstree-leaf > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large > .jstree-no-dots .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large > .jstree-no-dots .jstree-open > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-position: -32px 0px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large > .jstree-no-dots .jstree-closed > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-position: 0px 0px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-disabled,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-disabled {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-disabled.jstree-hovered,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-disabled.jstree-hovered {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-disabled.jstree-clicked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-disabled.jstree-clicked {
  background: #efefef;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-checkbox,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-checkbox {
  background-position: -160px 0px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-checkbox:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-checkbox:hover {
  background-position: -160px -32px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-checked > .jstree-checkbox,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-checked > .jstree-checkbox {
  background-position: -224px 0px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-checked > .jstree-checkbox:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-checked > .jstree-checkbox:hover {
  background-position: -224px -32px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-anchor > .jstree-undetermined,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-anchor > .jstree-undetermined {
  background-position: -192px 0px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-anchor > .jstree-undetermined:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-anchor > .jstree-undetermined:hover {
  background-position: -192px -32px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-checkbox-disabled,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-checkbox-disabled {
  opacity: 0.8;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='jstree-grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#jstree-grayscale");
  /* Firefox 10+ */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+ & Safari 6+ */
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large > .jstree-striped,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large > .jstree-striped {
  background-size: auto 64px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large.jstree-rtl .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large.jstree-rtl .jstree-node {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
  background-position: 100% 1px;
  background-repeat: repeat-y;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large.jstree-rtl .jstree-last,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large.jstree-rtl .jstree-last {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large.jstree-rtl .jstree-open > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large.jstree-rtl .jstree-open > .jstree-ocl {
  background-position: -128px -32px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large.jstree-rtl .jstree-closed > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large.jstree-rtl .jstree-closed > .jstree-ocl {
  background-position: -96px -32px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large.jstree-rtl .jstree-leaf > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large.jstree-rtl .jstree-leaf > .jstree-ocl {
  background-position: -64px -32px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-node,
.paas-pads-show-page .paas-verilog-wave .jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  background: transparent;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-position: -32px -32px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-position: 0px -32px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-themeicon-custom,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-themeicon-custom {
  background-color: transparent;
  background-image: none;
  background-position: 0 0;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large > .jstree-container-ul .jstree-loading > .jstree-ocl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large > .jstree-container-ul .jstree-loading > .jstree-ocl {
  background: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-throbber-e611bd10da5752d2c77c75664d6ec0cc16491d9d1d85012a753624374ccfeeae.gif) center center no-repeat;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-file,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-file {
  background: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-32px-0633b4a6fe8502c6a1f165b41ae48da7e681cb3c8c464cf5bd63e22935359782.png) -96px -64px no-repeat;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-folder,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-folder {
  background: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-32px-0633b4a6fe8502c6a1f165b41ae48da7e681cb3c8c464cf5bd63e22935359782.png) -256px 0px no-repeat;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large > .jstree-container-ul > .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large > .jstree-container-ul > .jstree-node {
  margin-left: 0;
  margin-right: 0;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-default-large,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-default-large {
  line-height: 32px;
  padding: 0 4px;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-default-large .jstree-ok,
.paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-default-large .jstree-er,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-default-large .jstree-ok,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-default-large .jstree-er {
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-32px-0633b4a6fe8502c6a1f165b41ae48da7e681cb3c8c464cf5bd63e22935359782.png);
  background-repeat: no-repeat;
  background-color: transparent;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-default-large i,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-default-large i {
  background: transparent;
  width: 32px;
  height: 32px;
  line-height: 32px;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-default-large .jstree-ok,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-default-large .jstree-ok {
  background-position: 0px -64px;
}
.paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-default-large .jstree-er,
.paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-default-large .jstree-er {
  background-position: -32px -64px;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-ellipsis,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-ellipsis {
  overflow: hidden;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large .jstree-ellipsis .jstree-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large .jstree-ellipsis .jstree-anchor {
  width: calc(100% - 37px);
  text-overflow: ellipsis;
  overflow: hidden;
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large.jstree-rtl .jstree-node,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large.jstree-rtl .jstree-node {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg==");
}
.paas-pads-show-page .paas-verilog-wave .jstree-default-large.jstree-rtl .jstree-last,
.paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-large.jstree-rtl .jstree-last {
  background: transparent;
}
@media (max-width: 768px) {
  .paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-dnd-responsive,
  .paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-dnd-responsive {
    line-height: 40px;
    font-weight: bold;
    font-size: 1.1em;
    text-shadow: 1px 1px white;
  }
  .paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-dnd-responsive > i,
  .paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-dnd-responsive > i {
    background: transparent;
    width: 40px;
    height: 40px;
  }
  .paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-dnd-responsive > .jstree-ok,
  .paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-dnd-responsive > .jstree-ok {
    background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-40px-015a116b7d9009c6622279c959e455d4e3b1fde05d572d50d6e3844130f72a0e.png);
    background-position: 0 -200px;
    background-size: 120px 240px;
  }
  .paas-pads-show-page .paas-verilog-wave #jstree-dnd.jstree-dnd-responsive > .jstree-er,
  .paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-dnd.jstree-dnd-responsive > .jstree-er {
    background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-40px-015a116b7d9009c6622279c959e455d4e3b1fde05d572d50d6e3844130f72a0e.png);
    background-position: -40px -200px;
    background-size: 120px 240px;
  }
  .paas-pads-show-page .paas-verilog-wave #jstree-marker.jstree-dnd-responsive,
  .paas-pads-show-page .paas-testcase-verilog-body-panel #jstree-marker.jstree-dnd-responsive {
    border-left-width: 10px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    margin-top: -10px;
  }
}
@media (max-width: 768px) {
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive {
    /*
    .jstree-open > .jstree-ocl,
    .jstree-closed > .jstree-ocl { border-radius:20px; background-color:white; }
    */
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-icon,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-icon {
    background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-40px-015a116b7d9009c6622279c959e455d4e3b1fde05d572d50d6e3844130f72a0e.png);
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-node,
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-leaf > .jstree-ocl,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-node,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-leaf > .jstree-ocl {
    background: transparent;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-node,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-node {
    min-height: 40px;
    line-height: 40px;
    margin-left: 40px;
    min-width: 40px;
    white-space: nowrap;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-anchor,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-anchor {
    line-height: 40px;
    height: 40px;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-icon,
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-icon:empty,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-icon,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-icon:empty {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive > .jstree-container-ul > .jstree-node,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive > .jstree-container-ul > .jstree-node {
    margin-left: 0;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive.jstree-rtl .jstree-node,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive.jstree-rtl .jstree-node {
    margin-left: 0;
    margin-right: 40px;
    background: transparent;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive.jstree-rtl .jstree-container-ul > .jstree-node,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive.jstree-rtl .jstree-container-ul > .jstree-node {
    margin-right: 0;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-ocl,
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-themeicon,
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-checkbox,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-ocl,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-themeicon,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-checkbox {
    background-size: 120px 240px;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-leaf > .jstree-ocl,
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive.jstree-rtl .jstree-leaf > .jstree-ocl,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-leaf > .jstree-ocl,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive.jstree-rtl .jstree-leaf > .jstree-ocl {
    background: transparent;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-open > .jstree-ocl,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-open > .jstree-ocl {
    background-position: 0 0 !important;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-closed > .jstree-ocl,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-closed > .jstree-ocl {
    background-position: 0 -40px !important;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive.jstree-rtl .jstree-closed > .jstree-ocl,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive.jstree-rtl .jstree-closed > .jstree-ocl {
    background-position: -40px 0 !important;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-themeicon,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-themeicon {
    background-position: -40px -40px;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-checkbox,
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-checkbox:hover,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-checkbox,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-checkbox:hover {
    background-position: -40px -80px;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-checked > .jstree-checkbox,
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-checked > .jstree-checkbox:hover,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-checked > .jstree-checkbox,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-checked > .jstree-checkbox:hover {
    background-position: 0 -80px;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-anchor > .jstree-undetermined,
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-anchor > .jstree-undetermined:hover,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-anchor > .jstree-undetermined,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-anchor > .jstree-undetermined:hover {
    background-position: 0 -120px;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-anchor,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-anchor {
    font-weight: bold;
    font-size: 1.1em;
    text-shadow: 1px 1px white;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive > .jstree-striped,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive > .jstree-striped {
    background: transparent;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-wholerow,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-wholerow {
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(64, 64, 64, 0.2);
    background: #ebebeb;
    height: 40px;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-wholerow-hovered,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-wholerow-hovered {
    background: #e7f4f9;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-wholerow-clicked,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-wholerow-clicked {
    background: #beebff;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-children .jstree-last > .jstree-wholerow,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-children .jstree-last > .jstree-wholerow {
    box-shadow: inset 0 -6px 3px -5px #666666;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-children .jstree-open > .jstree-wholerow,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-children .jstree-open > .jstree-wholerow {
    box-shadow: inset 0 6px 3px -5px #666666;
    border-top: 0;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-children .jstree-open + .jstree-open,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-children .jstree-open + .jstree-open {
    box-shadow: none;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-node,
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-icon,
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-node > .jstree-ocl,
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-themeicon,
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-checkbox,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-node,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-icon,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-node > .jstree-ocl,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-themeicon,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-checkbox {
    background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-40px-015a116b7d9009c6622279c959e455d4e3b1fde05d572d50d6e3844130f72a0e.png);
    background-size: 120px 240px;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-node,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-node {
    background-position: -80px 0;
    background-repeat: repeat-y;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-last,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-last {
    background: transparent;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-leaf > .jstree-ocl,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-leaf > .jstree-ocl {
    background-position: -40px -120px;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-last > .jstree-ocl,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-last > .jstree-ocl {
    background-position: -40px -160px;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-themeicon-custom,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-themeicon-custom {
    background-color: transparent;
    background-image: none;
    background-position: 0 0;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-file,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-file {
    background: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-40px-015a116b7d9009c6622279c959e455d4e3b1fde05d572d50d6e3844130f72a0e.png) 0 -160px no-repeat;
    background-size: 120px 240px;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive .jstree-folder,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive .jstree-folder {
    background: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/jstree-40px-015a116b7d9009c6622279c959e455d4e3b1fde05d572d50d6e3844130f72a0e.png) -40px -40px no-repeat;
    background-size: 120px 240px;
  }
  .paas-pads-show-page .paas-verilog-wave .jstree-default-responsive > .jstree-container-ul > .jstree-node,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .jstree-default-responsive > .jstree-container-ul > .jstree-node {
    margin-left: 0;
    margin-right: 0;
  }
}
@-webkit-keyframes cm-spin {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(359deg);
    transform: translateY(-50%) rotate(359deg);
  }
}
@-o-keyframes cm-spin {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
    -o-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(359deg);
    -o-transform: translateY(-50%) rotate(359deg);
    transform: translateY(-50%) rotate(359deg);
  }
}
@keyframes cm-spin {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
    -o-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(359deg);
    -o-transform: translateY(-50%) rotate(359deg);
    transform: translateY(-50%) rotate(359deg);
  }
}
@font-face {
  font-family: "context-menu-icons";
  font-style: normal;
  font-weight: normal;
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/context-menu-icons-12bab4d91cd59219ae6dfaa93d67a2eeaeb64d991f543ff317891acefa8f4a12.eot?33lxn);
  src: url(https://assets.showmebug.com/smb-rails/f10d173/assets/context-menu-icons-12bab4d91cd59219ae6dfaa93d67a2eeaeb64d991f543ff317891acefa8f4a12.eot?33lxn#iefix) format("embedded-opentype"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/context-menu-icons-b0ab766a903fe9ab9a770ead091dc73b8ebb1204314ffbdb943e635aee144d4f.woff2?33lxn) format("woff2"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/context-menu-icons-afc1035e2c0523dcf57bc1b0ec35ad4b81c057fd689c9c0bc6d1c9c38fca2055.woff?33lxn) format("woff"), url(https://assets.showmebug.com/smb-rails/f10d173/assets/context-menu-icons-a2429dce4c67ce672c92a7f671f6de4fe9f4c78e2eda36eed853277a74ca2aba.ttf?33lxn) format("truetype");
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon-add:before,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon-add:before {
  content: "\ea01";
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon-copy:before,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon-copy:before {
  content: "\ea02";
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon-cut:before,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon-cut:before {
  content: "\ea03";
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon-delete:before,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon-delete:before {
  content: "\ea04";
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon-edit:before,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon-edit:before {
  content: "\ea05";
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon-loading:before,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon-loading:before {
  content: "\ea06";
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon-paste:before,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon-paste:before {
  content: "\ea07";
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon-quit:before,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon-quit:before {
  content: "\ea08";
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon::before,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2em;
  font-family: "context-menu-icons";
  font-size: 1em;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  color: #2980b9;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon.context-menu-hover:before,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon.context-menu-hover:before {
  color: #fff;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon.context-menu-disabled::before,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon.context-menu-disabled::before {
  color: #bbb;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon.context-menu-icon-loading:before,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon.context-menu-icon-loading:before {
  -webkit-animation: cm-spin 2s infinite;
  -o-animation: cm-spin 2s infinite;
  animation: cm-spin 2s infinite;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon.context-menu-icon--fa,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon.context-menu-icon--fa {
  display: list-item;
  font-family: inherit;
  line-height: inherit;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon.context-menu-icon--fa::before,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon.context-menu-icon--fa::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2em;
  font-family: FontAwesome;
  font-size: 1em;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  color: #2980b9;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon.context-menu-icon--fa.context-menu-hover:before,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon.context-menu-icon--fa.context-menu-hover:before {
  color: #fff;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon.context-menu-icon--fa.context-menu-disabled::before,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon.context-menu-icon--fa.context-menu-disabled::before {
  color: #bbb;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon.context-menu-icon--fa5,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon.context-menu-icon--fa5 {
  display: list-item;
  font-family: inherit;
  line-height: inherit;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon.context-menu-icon--fa5 i,
.paas-pads-show-page .paas-verilog-wave .context-menu-icon.context-menu-icon--fa5 svg,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon.context-menu-icon--fa5 i,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon.context-menu-icon--fa5 svg {
  position: absolute;
  top: 0.3em;
  left: 0.5em;
  color: #2980b9;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon.context-menu-icon--fa5.context-menu-hover > i,
.paas-pads-show-page .paas-verilog-wave .context-menu-icon.context-menu-icon--fa5.context-menu-hover > svg,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon.context-menu-icon--fa5.context-menu-hover > i,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon.context-menu-icon--fa5.context-menu-hover > svg {
  color: #fff;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-icon.context-menu-icon--fa5.context-menu-disabled i,
.paas-pads-show-page .paas-verilog-wave .context-menu-icon.context-menu-icon--fa5.context-menu-disabled svg,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon.context-menu-icon--fa5.context-menu-disabled i,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-icon.context-menu-icon--fa5.context-menu-disabled svg {
  color: #bbb;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-list,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-list {
  position: absolute;
  display: inline-block;
  min-width: 13em;
  max-width: 26em;
  padding: 0.25em 0;
  margin: 0.3em;
  font-family: inherit;
  font-size: inherit;
  list-style-type: none;
  background: #ffe;
  border: 1px solid #bebebe;
  border-radius: 0.2em;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.paas-pads-show-page .paas-verilog-wave .context-menu-item,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-item {
  position: relative;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  padding: 0.2em 2em;
  color: #2f2f2f;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-separator,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-separator {
  padding: 0;
  margin: 0.35em 0;
  border-bottom: 1px solid #e6e6e6;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-item > label > input,
.paas-pads-show-page .paas-verilog-wave .context-menu-item > label > textarea,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-item > label > input,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-item > label > textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-item.context-menu-hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-item.context-menu-hover {
  color: #fff;
  cursor: pointer;
  background-color: #2980b9;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-item.context-menu-disabled,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-item.context-menu-disabled {
  color: #bbb;
  cursor: default;
  background-color: #fff;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-input.context-menu-hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-input.context-menu-hover {
  color: #2f2f2f;
  cursor: default;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-submenu:after,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-submenu:after {
  position: absolute;
  top: 50%;
  right: 0.5em;
  z-index: 1;
  width: 0;
  height: 0;
  content: "";
  border-color: transparent transparent transparent #2f2f2f;
  border-style: solid;
  border-width: 0.25em 0 0.25em 0.25em;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.paas-pads-show-page .paas-verilog-wave .context-menu-item.context-menu-input,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-item.context-menu-input {
  padding: 0.3em 0.6em;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-input > label > *,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-input > label > * {
  vertical-align: top;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-input > label > input[type=checkbox],
.paas-pads-show-page .paas-verilog-wave .context-menu-input > label > input[type=radio],
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-input > label > input[type=checkbox],
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-input > label > input[type=radio] {
  position: relative;
  top: 0.12em;
  margin-right: 0.4em;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-input > label,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-input > label {
  margin: 0;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-input > label,
.paas-pads-show-page .paas-verilog-wave .context-menu-input > label > input[type=text],
.paas-pads-show-page .paas-verilog-wave .context-menu-input > label > textarea,
.paas-pads-show-page .paas-verilog-wave .context-menu-input > label > select,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-input > label,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-input > label > input[type=text],
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-input > label > textarea,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-input > label > select {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-input > label > textarea,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-input > label > textarea {
  height: 7em;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-item > .context-menu-list,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-item > .context-menu-list {
  top: 0.3em;
  /* re-positioned by js */
  right: -0.3em;
  display: none;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-item.context-menu-visible > .context-menu-list,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-item.context-menu-visible > .context-menu-list {
  display: block;
}
.paas-pads-show-page .paas-verilog-wave .context-menu-accesskey,
.paas-pads-show-page .paas-testcase-verilog-body-panel .context-menu-accesskey {
  text-decoration: underline;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult {
  background-color: #222;
  /***********************************************************
  *
  *    Signal names and values column
  *
  ***********************************************************/
  /***********************************************************
  *
  *    SVG styles for signals
  *
  ***********************************************************/
  /**
  * Signal highlighter:
  *
  * There are several ways to highlight a signal.
  *   1: Change color using d3 selections in js
  *   2: stronger-stroke:
  *       1 -> 2 use with shape-rendering: crispEdges; (https://stackoverflow.com/a/34229584/2506522)
  *       2 -> 3 (seems too strong for me)
  *   3: Using opacity to make it darker ( 0.8 -> 1.0)
  */
  /* jstree workaround based on: https://stackoverflow.com/a/65616873/2506522 */
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot .verilog-zoom-tools,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual .verilog-zoom-tools,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected .verilog-zoom-tools,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult .verilog-zoom-tools,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot .verilog-zoom-tools,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual .verilog-zoom-tools,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected .verilog-zoom-tools,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult .verilog-zoom-tools {
  margin-bottom: 4px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot .verilog-zoom-tools span,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual .verilog-zoom-tools span,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected .verilog-zoom-tools span,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult .verilog-zoom-tools span,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot .verilog-zoom-tools span,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual .verilog-zoom-tools span,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected .verilog-zoom-tools span,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult .verilog-zoom-tools span {
  margin-left: 8px;
  cursor: pointer;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot .verilog-zoom-tools img,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual .verilog-zoom-tools img,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected .verilog-zoom-tools img,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult .verilog-zoom-tools img,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot .verilog-zoom-tools img,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual .verilog-zoom-tools img,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected .verilog-zoom-tools img,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult .verilog-zoom-tools img {
  width: 28px !important;
  height: 20px;
  border-radius: 4px;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #epic-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #epic-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #epic-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #epic-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #epic-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #epic-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #epic-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #epic-container {
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow: hidden;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #structure-container-scroll-y,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #structure-container-scroll-y,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #structure-container-scroll-y,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #structure-container-scroll-y,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #structure-container-scroll-y,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #structure-container-scroll-y,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #structure-container-scroll-y,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #structure-container-scroll-y {
  flex: auto;
  overflow: auto;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #main-container-scroll-y,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #main-container-scroll-y,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #main-container-scroll-y,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #main-container-scroll-y,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #main-container-scroll-y,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #main-container-scroll-y,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #main-container-scroll-y,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #main-container-scroll-y {
  display: flex;
  flex-direction: row;
  overflow-y: auto;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #main-container-tree,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #main-container-wave,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #main-container-tree,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #main-container-wave,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #main-container-tree,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #main-container-wave,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #main-container-tree,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #main-container-wave,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #main-container-tree,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #main-container-wave,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #main-container-tree,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #main-container-wave,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #main-container-tree,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #main-container-wave,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #main-container-tree,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #main-container-wave {
  display: flex;
  width: 100%;
  min-height: 100%;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #main-container-wave,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #main-container-wave,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #main-container-wave,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #main-container-wave,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #main-container-wave,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #main-container-wave,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #main-container-wave,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #main-container-wave {
  background-color: #222;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #main-container-wave ul,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #main-container-wave ul,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #main-container-wave ul,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #main-container-wave ul,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #main-container-wave ul,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #main-container-wave ul,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #main-container-wave ul,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #main-container-wave ul {
  padding: 0px;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #main-container-wave ul li,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #main-container-wave ul li,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #main-container-wave ul li,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #main-container-wave ul li,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #main-container-wave ul li,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #main-container-wave ul li,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #main-container-wave ul li,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #main-container-wave ul li {
  margin: 0px;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #main-container-wave ul li ul li,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #main-container-wave ul li ul li,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #main-container-wave ul li ul li,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #main-container-wave ul li ul li,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #main-container-wave ul li ul li,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #main-container-wave ul li ul li,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #main-container-wave ul li ul li,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #main-container-wave ul li ul li {
  margin-left: 24px;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #main-container-wave .ui-resizable-e,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #main-container-wave .ui-resizable-e,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #main-container-wave .ui-resizable-e,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #main-container-wave .ui-resizable-e,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #main-container-wave .ui-resizable-e,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #main-container-wave .ui-resizable-e,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #main-container-wave .ui-resizable-e,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #main-container-wave .ui-resizable-e {
  width: 3px;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #name-col-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #name-col-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #name-col-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #name-col-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #name-col-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #name-col-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #name-col-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #name-col-container {
  display: flex;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #values-col-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #values-col-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #values-col-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #values-col-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #values-col-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #values-col-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #values-col-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #values-col-container {
  width: fit-content;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #wave-axis-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #wave-axis-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #wave-axis-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #wave-axis-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #wave-axis-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #wave-axis-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #wave-axis-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #wave-axis-container {
  display: flex;
  flex: auto;
  flex-direction: column;
  overflow-x: auto;
  overflow-x: overlay;
  min-height: 100%;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #wave-axis-container::-webkit-scrollbar,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #wave-axis-container::-webkit-scrollbar,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #wave-axis-container::-webkit-scrollbar,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #wave-axis-container::-webkit-scrollbar,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #wave-axis-container::-webkit-scrollbar,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #wave-axis-container::-webkit-scrollbar,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #wave-axis-container::-webkit-scrollbar,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #wave-axis-container::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #wave-axis-container::-webkit-scrollbar-thumb,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #wave-axis-container::-webkit-scrollbar-thumb,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #wave-axis-container::-webkit-scrollbar-thumb,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #wave-axis-container::-webkit-scrollbar-thumb,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #wave-axis-container::-webkit-scrollbar-thumb,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #wave-axis-container::-webkit-scrollbar-thumb,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #wave-axis-container::-webkit-scrollbar-thumb,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #wave-axis-container::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #wave-axis-container::-webkit-scrollbar,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #wave-axis-container::-webkit-scrollbar,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #wave-axis-container::-webkit-scrollbar,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #wave-axis-container::-webkit-scrollbar,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #wave-axis-container::-webkit-scrollbar,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #wave-axis-container::-webkit-scrollbar,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #wave-axis-container::-webkit-scrollbar,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #wave-axis-container::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #wave-axis-container::-webkit-scrollbar-thumb,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #wave-axis-container::-webkit-scrollbar-thumb,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #wave-axis-container::-webkit-scrollbar-thumb,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #wave-axis-container::-webkit-scrollbar-thumb,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #wave-axis-container::-webkit-scrollbar-thumb,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #wave-axis-container::-webkit-scrollbar-thumb,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #wave-axis-container::-webkit-scrollbar-thumb,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #wave-axis-container::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #mainSVG,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #mainSVG,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #mainSVG,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #mainSVG,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #mainSVG,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #mainSVG,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #mainSVG,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #mainSVG {
  min-height: 100%;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot .ui-resizable-handle,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual .ui-resizable-handle,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected .ui-resizable-handle,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult .ui-resizable-handle,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot .ui-resizable-handle,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual .ui-resizable-handle,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected .ui-resizable-handle,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult .ui-resizable-handle {
  width: 5px;
  background: #bbb;
  padding: 0px;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot .resizable-col,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual .resizable-col,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected .resizable-col,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult .resizable-col,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot .resizable-col,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual .resizable-col,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected .resizable-col,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult .resizable-col {
  width: 100px;
  padding: 0px 3px 0px 7px;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #mainGr,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #mainGr,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #mainGr,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #mainGr,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #mainGr,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #mainGr,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #mainGr,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #mainGr {
  transform: translateX(8px);
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot .signal-name,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot .signal-value,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual .signal-name,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual .signal-value,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected .signal-name,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected .signal-value,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult .signal-name,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult .signal-value,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot .signal-name,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot .signal-value,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual .signal-name,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual .signal-value,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected .signal-name,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected .signal-value,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult .signal-name,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult .signal-value {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: sans-serif;
  height: 24px;
  line-height: 24px; /* same as height! */
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #object-tree,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #object-tree,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #object-tree,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #object-tree,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #object-tree,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #object-tree,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #object-tree,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #object-tree {
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: sans-serif;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #structure-col,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #structure-col,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #structure-col,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #structure-col,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #structure-col,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #structure-col,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #structure-col,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #structure-col {
  display: flex;
  flex-direction: column;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #structure-search::placeholder,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #structure-search::placeholder,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #structure-search::placeholder,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #structure-search::placeholder,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #structure-search::placeholder,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #structure-search::placeholder,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #structure-search::placeholder,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #structure-search::placeholder {
  color: #aaa;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #names-col-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #values-col-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #names-col-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #values-col-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #names-col-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #values-col-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #names-col-container,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #values-col-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #names-col-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #values-col-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #names-col-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #values-col-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #names-col-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #values-col-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #names-col-container,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #values-col-container {
  flex-shrink: 0;
  flex-grow: 0;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #names-col-container-scroll,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #names-col-container-scroll,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #names-col-container-scroll,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #names-col-container-scroll,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #names-col-container-scroll,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #names-col-container-scroll,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #names-col-container-scroll,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #names-col-container-scroll {
  overflow: auto;
  height: 100%;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #names-col-container-scroll .jstree-container-ul,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #names-col-container-scroll .jstree-container-ul,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #names-col-container-scroll .jstree-container-ul,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #names-col-container-scroll .jstree-container-ul,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #names-col-container-scroll .jstree-container-ul,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #names-col-container-scroll .jstree-container-ul,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #names-col-container-scroll .jstree-container-ul,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #names-col-container-scroll .jstree-container-ul {
  max-width: 100%;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #names-col-container-scroll .jstree-container-ul li a:hover,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #names-col-container-scroll .jstree-container-ul li a:hover,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #names-col-container-scroll .jstree-container-ul li a:hover,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #names-col-container-scroll .jstree-container-ul li a:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #names-col-container-scroll .jstree-container-ul li a:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #names-col-container-scroll .jstree-container-ul li a:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #names-col-container-scroll .jstree-container-ul li a:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #names-col-container-scroll .jstree-container-ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #names-col-container-scroll .jstree-container-ul li a.jstree-clicked,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #names-col-container-scroll .jstree-container-ul li a.jstree-clicked,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #names-col-container-scroll .jstree-container-ul li a.jstree-clicked,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #names-col-container-scroll .jstree-container-ul li a.jstree-clicked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #names-col-container-scroll .jstree-container-ul li a.jstree-clicked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #names-col-container-scroll .jstree-container-ul li a.jstree-clicked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #names-col-container-scroll .jstree-container-ul li a.jstree-clicked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #names-col-container-scroll .jstree-container-ul li a.jstree-clicked {
  background-color: rgba(64, 140, 255, 0.4);
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #names-col-container-scroll .jstree-container-ul .jstree-anchor,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #names-col-container-scroll .jstree-container-ul .jstree-anchor,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #names-col-container-scroll .jstree-container-ul .jstree-anchor,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #names-col-container-scroll .jstree-container-ul .jstree-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #names-col-container-scroll .jstree-container-ul .jstree-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #names-col-container-scroll .jstree-container-ul .jstree-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #names-col-container-scroll .jstree-container-ul .jstree-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #names-col-container-scroll .jstree-container-ul .jstree-anchor {
  text-overflow: ellipsis;
  overflow: hidden;
  width: calc(100% - 24px);
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #values-col-container .jstree-container-ul li a:hover,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #values-col-container .jstree-container-ul li a:hover,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #values-col-container .jstree-container-ul li a:hover,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #values-col-container .jstree-container-ul li a:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #values-col-container .jstree-container-ul li a:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #values-col-container .jstree-container-ul li a:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #values-col-container .jstree-container-ul li a:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #values-col-container .jstree-container-ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #values-col-container .jstree-container-ul li a.jstree-clicked,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #values-col-container .jstree-container-ul li a.jstree-clicked,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #values-col-container .jstree-container-ul li a.jstree-clicked,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #values-col-container .jstree-container-ul li a.jstree-clicked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #values-col-container .jstree-container-ul li a.jstree-clicked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #values-col-container .jstree-container-ul li a.jstree-clicked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #values-col-container .jstree-container-ul li a.jstree-clicked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #values-col-container .jstree-container-ul li a.jstree-clicked {
  background-color: rgba(64, 140, 255, 0.4);
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot .highlighted-signal,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual .highlighted-signal,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected .highlighted-signal,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult .highlighted-signal,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot .highlighted-signal,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual .highlighted-signal,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected .highlighted-signal,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult .highlighted-signal {
  background-color: #5589c5;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot line.signal-valid,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual line.signal-valid,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected line.signal-valid,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult line.signal-valid,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot line.signal-valid,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual line.signal-valid,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected line.signal-valid,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult line.signal-valid {
  stroke: rgb(0, 235, 0);
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot line.signal-x,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual line.signal-x,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected line.signal-x,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult line.signal-x,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot line.signal-x,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual line.signal-x,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected line.signal-x,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult line.signal-x {
  stroke: rgb(235, 0, 0);
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot line.signal-highz,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual line.signal-highz,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected line.signal-highz,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult line.signal-highz,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot line.signal-highz,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual line.signal-highz,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected line.signal-highz,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult line.signal-highz {
  stroke: rgb(0, 0, 235);
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot text.bus-value,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual text.bus-value,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected text.bus-value,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult text.bus-value,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot text.bus-value,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual text.bus-value,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected text.bus-value,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult text.bus-value {
  fill: white;
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot .signalRow:not(.highlighted-signal),
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual .signalRow:not(.highlighted-signal),
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected .signalRow:not(.highlighted-signal),
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult .signalRow:not(.highlighted-signal),
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot .signalRow:not(.highlighted-signal),
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual .signalRow:not(.highlighted-signal),
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected .signalRow:not(.highlighted-signal),
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult .signalRow:not(.highlighted-signal) {
  stroke-width: 2;
  stroke-opacity: 0.8;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot .signalRow.highlighted-signal,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual .signalRow.highlighted-signal,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected .signalRow.highlighted-signal,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult .signalRow.highlighted-signal,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot .signalRow.highlighted-signal,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual .signalRow.highlighted-signal,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected .signalRow.highlighted-signal,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult .signalRow.highlighted-signal {
  stroke-width: 2;
  stroke-opacity: 1;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #grid-gr,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #grid-gr,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #grid-gr,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #grid-gr,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #grid-gr,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #grid-gr,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #grid-gr,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #grid-gr {
  color: #bbb;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot .wave-style-bus,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual .wave-style-bus,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected .wave-style-bus,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult .wave-style-bus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot .wave-style-bus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual .wave-style-bus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected .wave-style-bus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult .wave-style-bus {
  fill-opacity: 0.04;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot .wave-style-bit,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual .wave-style-bit,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected .wave-style-bit,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult .wave-style-bit,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot .wave-style-bit,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual .wave-style-bit,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected .wave-style-bit,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult .wave-style-bit {
  fill-opacity: 0.05;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #main-cursor,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #main-cursor,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #main-cursor,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #main-cursor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #main-cursor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #main-cursor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #main-cursor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #main-cursor {
  stroke-width: 3;
  stroke: #fc3;
  stroke-opacity: 0.8;
  shape-rendering: crispedges;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot rect.signal-highlighter,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual rect.signal-highlighter,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected rect.signal-highlighter,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult rect.signal-highlighter,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot rect.signal-highlighter,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual rect.signal-highlighter,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected rect.signal-highlighter,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult rect.signal-highlighter {
  opacity: 0;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot rect.time-grid-shadow-rect,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual rect.time-grid-shadow-rect,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected rect.time-grid-shadow-rect,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult rect.time-grid-shadow-rect,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot rect.time-grid-shadow-rect,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual rect.time-grid-shadow-rect,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected rect.time-grid-shadow-rect,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult rect.time-grid-shadow-rect {
  opacity: 0.8;
  fill: #222;
}
@media only screen and (max-width: 999px) {
  .paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #tool-group-cursor,
  .paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #tool-group-cursor,
  .paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #tool-group-cursor,
  .paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #tool-group-cursor,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #tool-group-cursor,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #tool-group-cursor,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #tool-group-cursor,
  .paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #tool-group-cursor {
    display: none;
  }
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot #values-col-container i,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual #values-col-container i,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected #values-col-container i,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult #values-col-container i,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot #values-col-container i,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual #values-col-container i,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected #values-col-container i,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult #values-col-container i {
  display: none;
}
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot .menu-label,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-actual .menu-label,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-expected .menu-label,
.paas-pads-show-page .paas-verilog-wave .verilog-svg-plot-deafult .menu-label,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot .menu-label,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-actual .menu-label,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-expected .menu-label,
.paas-pads-show-page .paas-testcase-verilog-body-panel .verilog-svg-plot-deafult .menu-label {
  color: #222;
  font-weight: 300;
}
.paas-pads-show-page .paas-verilog-wave .ui-helper-hidden,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-helper-hidden {
  display: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-helper-hidden-accessible,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.paas-pads-show-page .paas-verilog-wave .ui-helper-reset,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-helper-clearfix:before,
.paas-pads-show-page .paas-verilog-wave .ui-helper-clearfix:after,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-helper-clearfix:before,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}
.paas-pads-show-page .paas-verilog-wave .ui-helper-clearfix:after,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-helper-clearfix:after {
  clear: both;
}
.paas-pads-show-page .paas-verilog-wave .ui-helper-zfix,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0); /* support: IE8 */
}
.paas-pads-show-page .paas-verilog-wave .ui-front,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-front {
  z-index: 100;
}
.paas-pads-show-page .paas-verilog-wave .ui-state-disabled,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}
.paas-pads-show-page .paas-verilog-wave .ui-widget-icon-block,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}
.paas-pads-show-page .paas-verilog-wave .ui-widget-overlay,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.paas-pads-show-page .paas-verilog-wave .ui-accordion .ui-accordion-header,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: 0.5em 0.5em 0.5em 0.7em;
  font-size: 100%;
}
.paas-pads-show-page .paas-verilog-wave .ui-accordion .ui-accordion-content,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}
.paas-pads-show-page .paas-verilog-wave .ui-autocomplete,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}
.paas-pads-show-page .paas-verilog-wave .ui-menu,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-menu .ui-menu,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-menu .ui-menu {
  position: absolute;
}
.paas-pads-show-page .paas-verilog-wave .ui-menu .ui-menu-item,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  /* support: IE10, see #8844 */
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.paas-pads-show-page .paas-verilog-wave .ui-menu .ui-menu-item-wrapper,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px 0.4em;
}
.paas-pads-show-page .paas-verilog-wave .ui-menu .ui-menu-divider,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-menu .ui-state-focus,
.paas-pads-show-page .paas-verilog-wave .ui-menu .ui-state-active,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-menu .ui-state-focus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-menu .ui-state-active {
  margin: -1px;
}
.paas-pads-show-page .paas-verilog-wave .ui-menu-icons,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-menu-icons {
  position: relative;
}
.paas-pads-show-page .paas-verilog-wave .ui-menu-icons .ui-menu-item-wrapper,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em;
}
.paas-pads-show-page .paas-verilog-wave .ui-menu .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.2em;
  margin: auto 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-menu .ui-menu-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-button,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button {
  padding: 0.4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Support: IE <= 11 */
  overflow: visible;
}
.paas-pads-show-page .paas-verilog-wave .ui-button,
.paas-pads-show-page .paas-verilog-wave .ui-button:link,
.paas-pads-show-page .paas-verilog-wave .ui-button:visited,
.paas-pads-show-page .paas-verilog-wave .ui-button:hover,
.paas-pads-show-page .paas-verilog-wave .ui-button:active,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button:link,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button:visited,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button:active {
  text-decoration: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-button-icon-only,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button-icon-only {
  width: 2em;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}
.paas-pads-show-page .paas-verilog-wave input.ui-button.ui-button-icon-only,
.paas-pads-show-page .paas-testcase-verilog-body-panel input.ui-button.ui-button-icon-only {
  text-indent: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-button-icon-only .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}
.paas-pads-show-page .paas-verilog-wave .ui-button.ui-icon-notext .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;
}
.paas-pads-show-page .paas-verilog-wave input.ui-button.ui-icon-notext .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: 0.4em 1em;
}
.paas-pads-show-page .paas-verilog-wave input.ui-button::-moz-focus-inner,
.paas-pads-show-page .paas-verilog-wave button.ui-button::-moz-focus-inner,
.paas-pads-show-page .paas-testcase-verilog-body-panel input.ui-button::-moz-focus-inner,
.paas-pads-show-page .paas-testcase-verilog-body-panel button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-controlgroup,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-controlgroup {
  vertical-align: middle;
  display: inline-block;
}
.paas-pads-show-page .paas-verilog-wave .ui-controlgroup > .ui-controlgroup-item,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-controlgroup > .ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-controlgroup > .ui-controlgroup-item:focus,
.paas-pads-show-page .paas-verilog-wave .ui-controlgroup > .ui-controlgroup-item.ui-visual-focus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-controlgroup > .ui-controlgroup-item:focus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
  z-index: 9999;
}
.paas-pads-show-page .paas-verilog-wave .ui-controlgroup-vertical > .ui-controlgroup-item,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-controlgroup-vertical > .ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}
.paas-pads-show-page .paas-verilog-wave .ui-controlgroup-vertical .ui-controlgroup-item,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-controlgroup-vertical .ui-controlgroup-item {
  box-sizing: border-box;
}
.paas-pads-show-page .paas-verilog-wave .ui-controlgroup .ui-controlgroup-label,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-controlgroup .ui-controlgroup-label {
  padding: 0.4em 1em;
}
.paas-pads-show-page .paas-verilog-wave .ui-controlgroup .ui-controlgroup-label span,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%;
}
.paas-pads-show-page .paas-verilog-wave .ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
  border-left: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
  border-top: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-controlgroup-vertical .ui-spinner-input,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-controlgroup-vertical .ui-spinner-input {
  /* Support: IE8 only, Android < 4.4 only */
  width: 75%;
  width: calc(100% - 2.4em);
}
.paas-pads-show-page .paas-verilog-wave .ui-controlgroup-vertical .ui-spinner .ui-spinner-up,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid;
}
.paas-pads-show-page .paas-verilog-wave .ui-checkboxradio-label .ui-icon-background,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-checkboxradio-label .ui-icon-background {
  box-shadow: inset 1px 1px 1px #ccc;
  border-radius: 0.12em;
  border: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-checkboxradio-radio-label .ui-icon-background,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.paas-pads-show-page .paas-verilog-wave .ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid;
}
.paas-pads-show-page .paas-verilog-wave .ui-checkboxradio-disabled,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-checkboxradio-disabled {
  pointer-events: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker .ui-datepicker-header,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker .ui-datepicker-prev,
.paas-pads-show-page .paas-verilog-wave .ui-datepicker .ui-datepicker-next,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker .ui-datepicker-prev,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker .ui-datepicker-prev-hover,
.paas-pads-show-page .paas-verilog-wave .ui-datepicker .ui-datepicker-next-hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker .ui-datepicker-prev-hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker .ui-datepicker-prev,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker .ui-datepicker-prev {
  left: 2px;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker .ui-datepicker-next,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker .ui-datepicker-next {
  right: 2px;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker .ui-datepicker-prev-hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker .ui-datepicker-next-hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker .ui-datepicker-prev span,
.paas-pads-show-page .paas-verilog-wave .ui-datepicker .ui-datepicker-next span,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker .ui-datepicker-prev span,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker .ui-datepicker-title,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker .ui-datepicker-title select,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker select.ui-datepicker-month,
.paas-pads-show-page .paas-verilog-wave .ui-datepicker select.ui-datepicker-year,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker select.ui-datepicker-month,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker select.ui-datepicker-year {
  width: 45%;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker table,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker th,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker td,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker td {
  border: 0;
  padding: 1px;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker td span,
.paas-pads-show-page .paas-verilog-wave .ui-datepicker td a,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker td span,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker .ui-datepicker-buttonpane,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker .ui-datepicker-buttonpane button,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker.ui-datepicker-multi,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker.ui-datepicker-multi {
  width: auto;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-multi .ui-datepicker-group,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-multi .ui-datepicker-group {
  float: left;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-multi .ui-datepicker-group table,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-multi-2 .ui-datepicker-group,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-multi-3 .ui-datepicker-group,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-multi-4 .ui-datepicker-group,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-multi .ui-datepicker-buttonpane,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-row-break,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-rtl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-rtl {
  direction: rtl;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-rtl .ui-datepicker-prev,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-rtl .ui-datepicker-next,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-rtl .ui-datepicker-prev:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-rtl .ui-datepicker-next:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-rtl .ui-datepicker-buttonpane,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-rtl .ui-datepicker-buttonpane button,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-rtl .ui-datepicker-group,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.paas-pads-show-page .paas-verilog-wave .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}
.paas-pads-show-page .paas-verilog-wave .ui-datepicker .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: 0.5em;
  top: 0.3em;
}
.paas-pads-show-page .paas-verilog-wave .ui-dialog,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  outline: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-dialog-titlebar,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-dialog-title,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-dialog-titlebar-close,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-dialog-content,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: none;
  overflow: auto;
}
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-dialog-buttonpane,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em;
}
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-dialog-buttonpane button,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-resizable-n,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-resizable-e,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-resizable-s,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-resizable-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-resizable-se,
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-resizable-sw,
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-resizable-ne,
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-resizable-nw,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-resizable-se,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-resizable-sw,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-resizable-ne,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px;
}
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-resizable-se,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-resizable-sw,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-resizable-ne,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-dialog .ui-resizable-nw,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-draggable .ui-dialog-titlebar,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-draggable .ui-dialog-titlebar {
  cursor: move;
}
.paas-pads-show-page .paas-verilog-wave .ui-draggable-handle,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-resizable,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-resizable {
  position: relative;
}
.paas-pads-show-page .paas-verilog-wave .ui-resizable-handle,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-resizable-disabled .ui-resizable-handle,
.paas-pads-show-page .paas-verilog-wave .ui-resizable-autohide .ui-resizable-handle,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-resizable-disabled .ui-resizable-handle,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-resizable-autohide .ui-resizable-handle {
  display: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-resizable-n,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-resizable-s,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-resizable-e,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}
.paas-pads-show-page .paas-verilog-wave .ui-resizable-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}
.paas-pads-show-page .paas-verilog-wave .ui-resizable-se,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}
.paas-pads-show-page .paas-verilog-wave .ui-resizable-sw,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}
.paas-pads-show-page .paas-verilog-wave .ui-resizable-nw,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}
.paas-pads-show-page .paas-verilog-wave .ui-resizable-ne,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}
.paas-pads-show-page .paas-verilog-wave .ui-progressbar,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}
.paas-pads-show-page .paas-verilog-wave .ui-progressbar .ui-progressbar-value,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}
.paas-pads-show-page .paas-verilog-wave .ui-progressbar .ui-progressbar-overlay,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,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");
  height: 100%;
  filter: alpha(opacity=25); /* support: IE8 */
  opacity: 0.25;
}
.paas-pads-show-page .paas-verilog-wave .ui-progressbar-indeterminate .ui-progressbar-value,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-selectable,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-selectable {
  -ms-touch-action: none;
  touch-action: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-selectable-helper,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}
.paas-pads-show-page .paas-verilog-wave .ui-selectmenu-menu,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-selectmenu-menu .ui-menu,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}
.paas-pads-show-page .paas-verilog-wave .ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-selectmenu-open,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-selectmenu-open {
  display: block;
}
.paas-pads-show-page .paas-verilog-wave .ui-selectmenu-text,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.paas-pads-show-page .paas-verilog-wave .ui-selectmenu-button.ui-button,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em;
}
.paas-pads-show-page .paas-verilog-wave .ui-selectmenu-icon.ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-slider,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-slider {
  position: relative;
  text-align: left;
}
.paas-pads-show-page .paas-verilog-wave .ui-slider .ui-slider-handle,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-slider .ui-slider-range,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-slider.ui-state-disabled .ui-slider-handle,
.paas-pads-show-page .paas-verilog-wave .ui-slider.ui-state-disabled .ui-slider-range,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-slider.ui-state-disabled .ui-slider-handle,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}
.paas-pads-show-page .paas-verilog-wave .ui-slider-horizontal,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-slider-horizontal {
  height: 0.8em;
}
.paas-pads-show-page .paas-verilog-wave .ui-slider-horizontal .ui-slider-handle,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}
.paas-pads-show-page .paas-verilog-wave .ui-slider-horizontal .ui-slider-range,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.paas-pads-show-page .paas-verilog-wave .ui-slider-horizontal .ui-slider-range-min,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-slider-horizontal .ui-slider-range-max,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-slider-vertical,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}
.paas-pads-show-page .paas-verilog-wave .ui-slider-vertical .ui-slider-handle,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}
.paas-pads-show-page .paas-verilog-wave .ui-slider-vertical .ui-slider-range,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}
.paas-pads-show-page .paas-verilog-wave .ui-slider-vertical .ui-slider-range-min,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-slider-vertical .ui-slider-range-max,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-slider-vertical .ui-slider-range-max {
  top: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-sortable-handle,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-spinner,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}
.paas-pads-show-page .paas-verilog-wave .ui-spinner-input,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0.222em 0;
  margin: 0.2em 0;
  vertical-align: middle;
  margin-left: 0.4em;
  margin-right: 2em;
}
.paas-pads-show-page .paas-verilog-wave .ui-spinner-button,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-spinner-button {
  width: 1.6em;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-spinner a.ui-spinner-button,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-spinner-up,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-spinner-up {
  top: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-spinner-down,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-spinner-down {
  bottom: 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-tabs,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-tabs {
  position: relative; /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: 0.2em;
}
.paas-pads-show-page .paas-verilog-wave .ui-tabs .ui-tabs-nav,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-tabs .ui-tabs-nav li,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}
.paas-pads-show-page .paas-verilog-wave .ui-tabs .ui-tabs-nav .ui-tabs-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-tabs .ui-tabs-nav li.ui-tabs-active,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}
.paas-pads-show-page .paas-verilog-wave .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.paas-pads-show-page .paas-verilog-wave .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.paas-pads-show-page .paas-verilog-wave .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}
.paas-pads-show-page .paas-verilog-wave .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}
.paas-pads-show-page .paas-verilog-wave .ui-tabs .ui-tabs-panel,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-tooltip,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
}
.paas-pads-show-page .paas-verilog-wave body .ui-tooltip,
.paas-pads-show-page .paas-testcase-verilog-body-panel body .ui-tooltip {
  border-width: 2px;
}
.paas-pads-show-page .paas-verilog-wave .ui-widget,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}
.paas-pads-show-page .paas-verilog-wave .ui-widget .ui-widget,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget .ui-widget {
  font-size: 1em;
}
.paas-pads-show-page .paas-verilog-wave .ui-widget input,
.paas-pads-show-page .paas-verilog-wave .ui-widget select,
.paas-pads-show-page .paas-verilog-wave .ui-widget textarea,
.paas-pads-show-page .paas-verilog-wave .ui-widget button,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget input,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget select,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget textarea,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}
.paas-pads-show-page .paas-verilog-wave .ui-widget.ui-widget-content,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}
.paas-pads-show-page .paas-verilog-wave .ui-widget-content,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}
.paas-pads-show-page .paas-verilog-wave .ui-widget-content a,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-content a {
  color: #333333;
}
.paas-pads-show-page .paas-verilog-wave .ui-widget-header,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}
.paas-pads-show-page .paas-verilog-wave .ui-widget-header a,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-header a {
  color: #333333;
}
.paas-pads-show-page .paas-verilog-wave .ui-state-default,
.paas-pads-show-page .paas-verilog-wave .ui-widget-content .ui-state-default,
.paas-pads-show-page .paas-verilog-wave .ui-widget-header .ui-state-default,
.paas-pads-show-page .paas-verilog-wave .ui-button,
.paas-pads-show-page .paas-verilog-wave html .ui-button.ui-state-disabled:hover,
.paas-pads-show-page .paas-verilog-wave html .ui-button.ui-state-disabled:active,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-default,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-content .ui-state-default,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-header .ui-state-default,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button,
.paas-pads-show-page .paas-testcase-verilog-body-panel html .ui-button.ui-state-disabled:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}
.paas-pads-show-page .paas-verilog-wave .ui-state-default a,
.paas-pads-show-page .paas-verilog-wave .ui-state-default a:link,
.paas-pads-show-page .paas-verilog-wave .ui-state-default a:visited,
.paas-pads-show-page .paas-verilog-wave a.ui-button,
.paas-pads-show-page .paas-verilog-wave a:link.ui-button,
.paas-pads-show-page .paas-verilog-wave a:visited.ui-button,
.paas-pads-show-page .paas-verilog-wave .ui-button,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-default a,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-default a:link,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-default a:visited,
.paas-pads-show-page .paas-testcase-verilog-body-panel a.ui-button,
.paas-pads-show-page .paas-testcase-verilog-body-panel a:link.ui-button,
.paas-pads-show-page .paas-testcase-verilog-body-panel a:visited.ui-button,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button {
  color: #454545;
  text-decoration: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-state-hover,
.paas-pads-show-page .paas-verilog-wave .ui-widget-content .ui-state-hover,
.paas-pads-show-page .paas-verilog-wave .ui-widget-header .ui-state-hover,
.paas-pads-show-page .paas-verilog-wave .ui-state-focus,
.paas-pads-show-page .paas-verilog-wave .ui-widget-content .ui-state-focus,
.paas-pads-show-page .paas-verilog-wave .ui-widget-header .ui-state-focus,
.paas-pads-show-page .paas-verilog-wave .ui-button:hover,
.paas-pads-show-page .paas-verilog-wave .ui-button:focus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-content .ui-state-hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-header .ui-state-hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-focus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-content .ui-state-focus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-header .ui-state-focus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}
.paas-pads-show-page .paas-verilog-wave .ui-state-hover a,
.paas-pads-show-page .paas-verilog-wave .ui-state-hover a:hover,
.paas-pads-show-page .paas-verilog-wave .ui-state-hover a:link,
.paas-pads-show-page .paas-verilog-wave .ui-state-hover a:visited,
.paas-pads-show-page .paas-verilog-wave .ui-state-focus a,
.paas-pads-show-page .paas-verilog-wave .ui-state-focus a:hover,
.paas-pads-show-page .paas-verilog-wave .ui-state-focus a:link,
.paas-pads-show-page .paas-verilog-wave .ui-state-focus a:visited,
.paas-pads-show-page .paas-verilog-wave a.ui-button:hover,
.paas-pads-show-page .paas-verilog-wave a.ui-button:focus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-hover a,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-hover a:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-hover a:link,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-hover a:visited,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-focus a,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-focus a:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-focus a:link,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-focus a:visited,
.paas-pads-show-page .paas-testcase-verilog-body-panel a.ui-button:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-visual-focus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-visual-focus {
  box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}
.paas-pads-show-page .paas-verilog-wave .ui-state-active,
.paas-pads-show-page .paas-verilog-wave .ui-widget-content .ui-state-active,
.paas-pads-show-page .paas-verilog-wave .ui-widget-header .ui-state-active,
.paas-pads-show-page .paas-verilog-wave a.ui-button:active,
.paas-pads-show-page .paas-verilog-wave .ui-button:active,
.paas-pads-show-page .paas-verilog-wave .ui-button.ui-state-active:hover,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-active,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-content .ui-state-active,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-header .ui-state-active,
.paas-pads-show-page .paas-testcase-verilog-body-panel a.ui-button:active,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button:active,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-background,
.paas-pads-show-page .paas-verilog-wave .ui-state-active .ui-icon-background,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-background,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}
.paas-pads-show-page .paas-verilog-wave .ui-state-active a,
.paas-pads-show-page .paas-verilog-wave .ui-state-active a:link,
.paas-pads-show-page .paas-verilog-wave .ui-state-active a:visited,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-active a,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-active a:link,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-state-highlight,
.paas-pads-show-page .paas-verilog-wave .ui-widget-content .ui-state-highlight,
.paas-pads-show-page .paas-verilog-wave .ui-widget-header .ui-state-highlight,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-highlight,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-content .ui-state-highlight,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}
.paas-pads-show-page .paas-verilog-wave .ui-state-checked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}
.paas-pads-show-page .paas-verilog-wave .ui-state-highlight a,
.paas-pads-show-page .paas-verilog-wave .ui-widget-content .ui-state-highlight a,
.paas-pads-show-page .paas-verilog-wave .ui-widget-header .ui-state-highlight a,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-highlight a,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-content .ui-state-highlight a,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-header .ui-state-highlight a {
  color: #777620;
}
.paas-pads-show-page .paas-verilog-wave .ui-state-error,
.paas-pads-show-page .paas-verilog-wave .ui-widget-content .ui-state-error,
.paas-pads-show-page .paas-verilog-wave .ui-widget-header .ui-state-error,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-error,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-content .ui-state-error,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}
.paas-pads-show-page .paas-verilog-wave .ui-state-error a,
.paas-pads-show-page .paas-verilog-wave .ui-widget-content .ui-state-error a,
.paas-pads-show-page .paas-verilog-wave .ui-widget-header .ui-state-error a,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-error a,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-content .ui-state-error a,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}
.paas-pads-show-page .paas-verilog-wave .ui-state-error-text,
.paas-pads-show-page .paas-verilog-wave .ui-widget-content .ui-state-error-text,
.paas-pads-show-page .paas-verilog-wave .ui-widget-header .ui-state-error-text,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-error-text,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-content .ui-state-error-text,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}
.paas-pads-show-page .paas-verilog-wave .ui-priority-primary,
.paas-pads-show-page .paas-verilog-wave .ui-widget-content .ui-priority-primary,
.paas-pads-show-page .paas-verilog-wave .ui-widget-header .ui-priority-primary,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-priority-primary,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-content .ui-priority-primary,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-header .ui-priority-primary {
  font-weight: bold;
}
.paas-pads-show-page .paas-verilog-wave .ui-priority-secondary,
.paas-pads-show-page .paas-verilog-wave .ui-widget-content .ui-priority-secondary,
.paas-pads-show-page .paas-verilog-wave .ui-widget-header .ui-priority-secondary,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-priority-secondary,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-content .ui-priority-secondary,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: Alpha(Opacity=70); /* support: IE8 */
  font-weight: normal;
}
.paas-pads-show-page .paas-verilog-wave .ui-state-disabled,
.paas-pads-show-page .paas-verilog-wave .ui-widget-content .ui-state-disabled,
.paas-pads-show-page .paas-verilog-wave .ui-widget-header .ui-state-disabled,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-disabled,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-content .ui-state-disabled,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35); /* support: IE8 */
  background-image: none;
}
.paas-pads-show-page .paas-verilog-wave .ui-state-disabled .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35); /* support: IE8 - See #6059 */
}
.paas-pads-show-page .paas-verilog-wave .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon {
  width: 16px;
  height: 16px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon,
.paas-pads-show-page .paas-verilog-wave .ui-widget-content .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-content .ui-icon {
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/ui-icons_444444_256x240-db95c0dcbd660c7962ddde4c5447ec0b227add65a8cc5a5e0c62af6343c31eb5.png);
}
.paas-pads-show-page .paas-verilog-wave .ui-widget-header .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-header .ui-icon {
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/ui-icons_444444_256x240-db95c0dcbd660c7962ddde4c5447ec0b227add65a8cc5a5e0c62af6343c31eb5.png);
}
.paas-pads-show-page .paas-verilog-wave .ui-state-hover .ui-icon,
.paas-pads-show-page .paas-verilog-wave .ui-state-focus .ui-icon,
.paas-pads-show-page .paas-verilog-wave .ui-button:hover .ui-icon,
.paas-pads-show-page .paas-verilog-wave .ui-button:focus .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-hover .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-focus .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button:hover .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button:focus .ui-icon {
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/ui-icons_555555_256x240-33fbad216a98cc200928303f71d67e694375c5530628a7ef5cb53a4dc66fdb77.png);
}
.paas-pads-show-page .paas-verilog-wave .ui-state-active .ui-icon,
.paas-pads-show-page .paas-verilog-wave .ui-button:active .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-active .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button:active .ui-icon {
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/ui-icons_ffffff_256x240-e4970edea240e9509a676a1de4333aa5228592493673810eb63cc96316a82955.png);
}
.paas-pads-show-page .paas-verilog-wave .ui-state-highlight .ui-icon,
.paas-pads-show-page .paas-verilog-wave .ui-button .ui-state-highlight.ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-highlight .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button .ui-state-highlight.ui-icon {
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/ui-icons_777620_256x240-6213422f5b25ed0baf24474e0b9cdef302d01c32bfffd85b477f9c1d61281da5.png);
}
.paas-pads-show-page .paas-verilog-wave .ui-state-error .ui-icon,
.paas-pads-show-page .paas-verilog-wave .ui-state-error-text .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-error .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-state-error-text .ui-icon {
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/ui-icons_cc0000_256x240-2fc03ebbcb7adf3f257f52a5ea1f425bd3e0bd3c1cd5f9cf2054a7e5d8527591.png);
}
.paas-pads-show-page .paas-verilog-wave .ui-button .ui-icon,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-button .ui-icon {
  background-image: url(https://assets.showmebug.com/smb-rails/f10d173/assets/teams/shared/ui-icons_777777_256x240-b2d21d1873dc2d7ab94c10c4a55ab55e466c2876cd434f4e6a8e330eaf6be34c.png);
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-blank,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-blank {
  background-position: 16px 16px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-caret-1-n,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-caret-1-n {
  background-position: 0 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-caret-1-ne,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-caret-1-ne {
  background-position: -16px 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-caret-1-e,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-caret-1-e {
  background-position: -32px 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-caret-1-se,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-caret-1-se {
  background-position: -48px 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-caret-1-s,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-caret-1-s {
  background-position: -65px 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-caret-1-sw,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-caret-1-sw {
  background-position: -80px 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-caret-1-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-caret-1-w {
  background-position: -96px 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-caret-1-nw,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-caret-1-nw {
  background-position: -112px 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-caret-2-n-s,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-caret-2-n-s {
  background-position: -128px 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-caret-2-e-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-caret-2-e-w {
  background-position: -144px 0;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-triangle-1-n,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-triangle-1-n {
  background-position: 0 -16px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-triangle-1-ne,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-triangle-1-e,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-triangle-1-e {
  background-position: -32px -16px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-triangle-1-se,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-triangle-1-se {
  background-position: -48px -16px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-triangle-1-s,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-triangle-1-s {
  background-position: -65px -16px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-triangle-1-sw,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-triangle-1-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-triangle-1-w {
  background-position: -96px -16px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-triangle-1-nw,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-triangle-2-n-s,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-triangle-2-e-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrow-1-n,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrow-1-n {
  background-position: 0 -32px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrow-1-ne,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrow-1-e,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrow-1-e {
  background-position: -32px -32px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrow-1-se,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrow-1-se {
  background-position: -48px -32px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrow-1-s,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrow-1-s {
  background-position: -65px -32px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrow-1-sw,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrow-1-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrow-1-w {
  background-position: -96px -32px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrow-1-nw,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrow-2-n-s,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrow-2-ne-sw,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrow-2-e-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrow-2-se-nw,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowstop-1-n,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowstop-1-e,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowstop-1-s,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowstop-1-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowthick-1-n,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowthick-1-ne,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowthick-1-e,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowthick-1-se,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowthick-1-s,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowthick-1-sw,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowthick-1-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowthick-1-nw,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowthick-2-n-s,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowthick-2-ne-sw,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowthick-2-e-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowthick-2-se-nw,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowthickstop-1-n,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowthickstop-1-e,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowthickstop-1-s,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowthickstop-1-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowreturnthick-1-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowreturnthick-1-n,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowreturnthick-1-e,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowreturnthick-1-s,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowreturn-1-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowreturn-1-n,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowreturn-1-e,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowreturn-1-s,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowrefresh-1-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowrefresh-1-n,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowrefresh-1-e,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrowrefresh-1-s,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrow-4,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrow-4 {
  background-position: 0 -80px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-arrow-4-diag,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-extlink,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-extlink {
  background-position: -32px -80px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-newwin,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-newwin {
  background-position: -48px -80px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-refresh,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-refresh {
  background-position: -64px -80px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-shuffle,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-shuffle {
  background-position: -80px -80px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-transfer-e-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-transfer-e-w {
  background-position: -96px -80px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-transferthick-e-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-folder-collapsed,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-folder-collapsed {
  background-position: 0 -96px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-folder-open,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-folder-open {
  background-position: -16px -96px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-document,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-document {
  background-position: -32px -96px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-document-b,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-document-b {
  background-position: -48px -96px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-note,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-note {
  background-position: -64px -96px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-mail-closed,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-mail-closed {
  background-position: -80px -96px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-mail-open,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-mail-open {
  background-position: -96px -96px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-suitcase,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-suitcase {
  background-position: -112px -96px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-comment,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-comment {
  background-position: -128px -96px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-person,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-person {
  background-position: -144px -96px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-print,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-print {
  background-position: -160px -96px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-trash,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-trash {
  background-position: -176px -96px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-locked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-locked {
  background-position: -192px -96px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-unlocked,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-unlocked {
  background-position: -208px -96px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-bookmark,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-bookmark {
  background-position: -224px -96px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-tag,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-tag {
  background-position: -240px -96px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-home,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-home {
  background-position: 0 -112px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-flag,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-flag {
  background-position: -16px -112px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-calendar,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-calendar {
  background-position: -32px -112px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-cart,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-cart {
  background-position: -48px -112px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-pencil,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-pencil {
  background-position: -64px -112px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-clock,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-clock {
  background-position: -80px -112px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-disk,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-disk {
  background-position: -96px -112px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-calculator,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-calculator {
  background-position: -112px -112px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-zoomin,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-zoomin {
  background-position: -128px -112px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-zoomout,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-zoomout {
  background-position: -144px -112px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-search,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-search {
  background-position: -160px -112px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-wrench,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-wrench {
  background-position: -176px -112px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-gear,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-gear {
  background-position: -192px -112px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-heart,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-heart {
  background-position: -208px -112px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-star,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-star {
  background-position: -224px -112px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-link,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-link {
  background-position: -240px -112px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-cancel,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-cancel {
  background-position: 0 -128px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-plus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-plus {
  background-position: -16px -128px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-plusthick,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-plusthick {
  background-position: -32px -128px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-minus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-minus {
  background-position: -48px -128px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-minusthick,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-minusthick {
  background-position: -64px -128px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-close,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-close {
  background-position: -80px -128px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-closethick,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-closethick {
  background-position: -96px -128px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-key,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-key {
  background-position: -112px -128px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-lightbulb,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-lightbulb {
  background-position: -128px -128px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-scissors,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-scissors {
  background-position: -144px -128px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-clipboard,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-clipboard {
  background-position: -160px -128px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-copy,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-copy {
  background-position: -176px -128px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-contact,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-contact {
  background-position: -192px -128px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-image,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-image {
  background-position: -208px -128px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-video,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-video {
  background-position: -224px -128px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-script,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-script {
  background-position: -240px -128px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-alert,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-alert {
  background-position: 0 -144px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-info,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-info {
  background-position: -16px -144px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-notice,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-notice {
  background-position: -32px -144px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-help,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-help {
  background-position: -48px -144px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-check,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-check {
  background-position: -64px -144px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-bullet,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-bullet {
  background-position: -80px -144px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-radio-on,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-radio-on {
  background-position: -96px -144px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-radio-off,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-radio-off {
  background-position: -112px -144px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-pin-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-pin-w {
  background-position: -128px -144px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-pin-s,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-pin-s {
  background-position: -144px -144px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-play,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-play {
  background-position: 0 -160px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-pause,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-pause {
  background-position: -16px -160px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-seek-next,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-seek-next {
  background-position: -32px -160px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-seek-prev,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-seek-prev {
  background-position: -48px -160px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-seek-end,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-seek-end {
  background-position: -64px -160px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-seek-start,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-seek-start {
  background-position: -80px -160px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-seek-first,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-seek-first {
  background-position: -80px -160px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-stop,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-stop {
  background-position: -96px -160px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-eject,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-eject {
  background-position: -112px -160px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-volume-off,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-volume-off {
  background-position: -128px -160px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-volume-on,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-volume-on {
  background-position: -144px -160px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-power,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-power {
  background-position: 0 -176px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-signal-diag,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-signal-diag {
  background-position: -16px -176px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-signal,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-signal {
  background-position: -32px -176px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-battery-0,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-battery-0 {
  background-position: -48px -176px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-battery-1,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-battery-1 {
  background-position: -64px -176px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-battery-2,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-battery-2 {
  background-position: -80px -176px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-battery-3,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-battery-3 {
  background-position: -96px -176px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-circle-plus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-circle-plus {
  background-position: 0 -192px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-circle-minus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-circle-minus {
  background-position: -16px -192px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-circle-close,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-circle-close {
  background-position: -32px -192px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-circle-triangle-e,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-circle-triangle-s,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-circle-triangle-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-circle-triangle-n,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-circle-arrow-e,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-circle-arrow-s,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-circle-arrow-w,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-circle-arrow-n,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-circle-zoomin,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-circle-zoomin {
  background-position: -176px -192px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-circle-zoomout,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-circle-zoomout {
  background-position: -192px -192px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-circle-check,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-circle-check {
  background-position: -208px -192px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-circlesmall-plus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-circlesmall-minus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-circlesmall-close,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-circlesmall-close {
  background-position: -32px -208px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-squaresmall-plus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-squaresmall-minus,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-squaresmall-close,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-squaresmall-close {
  background-position: -80px -208px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-grip-dotted-vertical,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-grip-dotted-horizontal,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-grip-solid-vertical,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-grip-solid-horizontal,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-gripsmall-diagonal-se,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}
.paas-pads-show-page .paas-verilog-wave .ui-icon-grip-diagonal-se,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}
.paas-pads-show-page .paas-verilog-wave .ui-corner-all,
.paas-pads-show-page .paas-verilog-wave .ui-corner-top,
.paas-pads-show-page .paas-verilog-wave .ui-corner-left,
.paas-pads-show-page .paas-verilog-wave .ui-corner-tl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-corner-all,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-corner-top,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-corner-left,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-corner-tl {
  border-top-left-radius: 3px;
}
.paas-pads-show-page .paas-verilog-wave .ui-corner-all,
.paas-pads-show-page .paas-verilog-wave .ui-corner-top,
.paas-pads-show-page .paas-verilog-wave .ui-corner-right,
.paas-pads-show-page .paas-verilog-wave .ui-corner-tr,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-corner-all,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-corner-top,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-corner-right,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-corner-tr {
  border-top-right-radius: 3px;
}
.paas-pads-show-page .paas-verilog-wave .ui-corner-all,
.paas-pads-show-page .paas-verilog-wave .ui-corner-bottom,
.paas-pads-show-page .paas-verilog-wave .ui-corner-left,
.paas-pads-show-page .paas-verilog-wave .ui-corner-bl,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-corner-all,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-corner-bottom,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-corner-left,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-corner-bl {
  border-bottom-left-radius: 3px;
}
.paas-pads-show-page .paas-verilog-wave .ui-corner-all,
.paas-pads-show-page .paas-verilog-wave .ui-corner-bottom,
.paas-pads-show-page .paas-verilog-wave .ui-corner-right,
.paas-pads-show-page .paas-verilog-wave .ui-corner-br,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-corner-all,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-corner-bottom,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-corner-right,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-corner-br {
  border-bottom-right-radius: 3px;
}
.paas-pads-show-page .paas-verilog-wave .ui-widget-overlay,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-overlay {
  background: #aaaaaa;
  opacity: 0.003;
  filter: Alpha(Opacity=0.3); /* support: IE8 */
}
.paas-pads-show-page .paas-verilog-wave .ui-widget-shadow,
.paas-pads-show-page .paas-testcase-verilog-body-panel .ui-widget-shadow {
  -webkit-box-shadow: 0px 0px 5px #666666;
  box-shadow: 0px 0px 5px #666666;
}
.paas-pads-show-page .smb-state-tag-playback {
  color: #e5a82e;
  background: rgba(229, 168, 46, 0.2);
}
.paas-pads-show-page .smb-state-tag-playback:before {
  background: #e5a82e;
}
.paas-pads-show-page .el-dialog .el-dialog__body .dialog-body,
.paas-pads-show-page .el-collapse-item__content {
  color: #fff;
}
.paas-pads-show-page .smb-icon-warning-circle {
  color: #e57239;
}
.paas-pads-show-page .video-detection {
  list-style: none;
  line-height: 36px;
  margin: 0;
  font-size: 14px;
  outline: 0;
  display: flex;
  align-items: center;
  color: #ccc;
}
.paas-pads-show-page .tech-popper.el-popover.el-popper {
  min-width: unset;
  padding: 8px;
  border-radius: 4px;
}
.paas-pads-show-page .tech-popper.el-popover.el-popper img {
  width: 100px;
  height: 100px;
}
.paas-pads-show-page #end-pad-dialog .end-pad-dialog-tip-content,
.paas-pads-show-page #sandbox-end-pad-dialog .end-pad-dialog-tip-content {
  color: #999;
}
.paas-pads-show-page #end-pad-dialog .sandbox-subtitle,
.paas-pads-show-page #sandbox-end-pad-dialog .sandbox-subtitle {
  color: #e57239;
}
.paas-pads-show-page .drp-calendar .table-condensed {
  color: #333;
}
.paas-pads-show-page .drp-calendar .table-condensed .active {
  color: #fff;
}
.paas-pads-show-page .watermark {
  overflow: hidden;
  position: absolute;
  right: 50px;
  bottom: 100px;
  pointer-events: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  opacity: 0.1;
  border-radius: 15px;
  padding: 4px 7px;
  z-index: 1001;
}
.paas-pads-show-page .watermark-header, .paas-pads-show-page .watermark-footer {
  font-size: 17px;
  display: flex;
  align-items: center;
}
.paas-pads-show-page .watermark-header span, .paas-pads-show-page .watermark-footer span {
  font-size: 30px;
  font-weight: 700;
}
.paas-pads-show-page .watermark-footer {
  letter-spacing: 1px;
}
.paas-pads-show-page .watermark.watermark-non-technology {
  background: unset;
  color: #333;
  bottom: 82px;
  right: 75px;
  opacity: 0.16;
}
.paas-pads-show-page .watermark .watermark-frame {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .paas-pads-show-page .watermark {
    right: 25px;
    bottom: 25px;
  }
  .paas-pads-show-page .watermark.watermark-non-technology {
    bottom: 40px;
    right: 34px;
  }
}
.paas-pads-show-page .interview-room-call-candidate-pending {
  background: rgba(58, 191, 147, 0.1);
  border: 1px solid rgba(58, 191, 147, 0.1);
  border-radius: 4px 0px 0px 4px;
  min-width: 125px;
}
.paas-pads-show-page .interview-room-call-candidate-color {
  color: #3abf93;
  font-size: 16px;
}
.paas-pads-show-page .interview-room-call-candidate-btn {
  min-width: 125px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px 0px 0px 4px;
}
.paas-pads-show-page .interview-room-next-pad-calling-btn {
  min-width: 125px;
  padding: 8px 16px;
  background: rgba(58, 191, 147, 0.1);
  border: 1px solid rgba(58, 191, 147, 0.1);
  border-radius: 4px 0px 0px 4px;
}
.paas-pads-show-page .interview-room-callback-btn {
  padding: 10px 8px;
  border-radius: 0px 4px 4px 0px;
  background-color: #434547;
  border: 1px solid #4d4f52;
}
.paas-pads-show-page .interview-room-callback-btn:hover {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
}
.paas-pads-show-page .call-next-candidate-icon-size {
  font-size: 16px;
}
.paas-pads-show-page .interview-room-icon-unset {
  margin-right: unset;
  font-size: 16px;
}
.paas-pads-show-page #end-pad-dialog .i-tooltips-color {
  width: 16px;
  height: 16px;
  color: #e57239;
}
.paas-pads-show-page #end-pad-dialog .end-pad-footer-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
.paas-pads-show-page #end-pad-dialog .open-next-interview-btn {
  outline: none;
  padding: 6px;
  transform: rotate(-90deg);
  width: 28px;
  height: 28px;
}
.paas-pads-show-page #end-pad-dialog .open-next-interview-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
.paas-pads-show-page #end-pad-dialog .next-interview-btn-append,
.paas-pads-show-page #end-pad-dialog .next-interview-btn-append:focus,
.paas-pads-show-page #end-pad-dialog .next-interview-btn-append:hover {
  padding: 6px;
  background: none;
  width: 28px;
  height: 28px;
  border: none;
}
.paas-pads-show-page #end-pad-dialog .smb-custom-radio .smb-custom-control-input:hover:not(:checked):not(:disabled) ~ .smb-custom-control-label::before {
  border-color: #408cff;
}
.paas-pads-show-page #end-pad-dialog .next-pad-icon-color {
  color: #fff;
}
.paas-pads-show-page #end-pad-dialog .input-append-border-left {
  border-left: unset;
  margin-left: 0px;
}
.paas-pads-show-page #end-pad-dialog .input-next-interview-at {
  background: rgba(255, 255, 255, 0.05);
  border: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 180px;
  border-right: unset;
}
.paas-pads-show-page #end-pad-dialog .input-next-interview-at:focus {
  box-shadow: unset;
}
.paas-pads-show-page #end-pad-dialog .next-interview-at-utc-group {
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.05);
  border: rgba(255, 255, 255, 0.1);
  border-left: unset;
}
.paas-pads-show-page #end-pad-dialog .next-interview-at-utc-title {
  font-size: 14px;
  margin-right: 10px;
  color: #ccc;
}
.paas-pads-show-page #end-pad-dialog .next-interview-tooltips-color {
  color: #999;
}
.paas-pads-show-page #end-pad-dialog .next-interview-tooltips-color:hover {
  color: #999;
}
.paas-pads-show-page #end-pad-dialog .next-pad-icon-tooltips-color {
  color: #999;
}
.paas-pads-show-page #end-pad-dialog .has-next-interview-group {
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.paas-pads-show-page #end-pad-dialog .has-next-interview-group .has-next-interview-swith {
  padding-left: 0px;
}
.paas-pads-show-page #end-pad-dialog .has-next-interview-group .next-interview-form-bottom {
  margin-bottom: 0px;
}
.paas-pads-show-page #end-pad-dialog .has-next-interview-group .has-next-interview-type-select {
  flex-wrap: wrap;
  align-content: center;
  min-height: 54px;
}
.paas-pads-show-page #end-pad-dialog .has-next-interview-group .has-next-interview-type-select.disabled {
  display: none;
}
.paas-pads-show-page #end-pad-dialog .has-next-interview-group .has-next-interview-type-select .has-next-interview-setting-option {
  padding-top: 12px;
}
.paas-pads-show-page #end-pad-dialog .has-next-interview-group .has-next-interview-type-select .hidden-default {
  display: none;
}
.paas-pads-show-page #end-pad-dialog .has-next-interview-group .time-range-split {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
}
.paas-pads-show-page #end-pad-dialog .has-next-interview-group .time-range-split span {
  overflow: hidden;
  white-space: nowrap;
  padding: 0 4px;
}
.paas-pads-show-page .QA-popper {
  background: #000000 !important;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.25);
  user-select: none;
  border-radius: 8px !important;
}
.paas-pads-show-page .QA-popper .QA-popper-header {
  display: flex;
  align-items: center;
  padding: 8px;
}
.paas-pads-show-page .QA-popper .QA-popper-header span {
  font-weight: 400;
  font-size: 14px;
  color: #cccccc;
}
.paas-pads-show-page .QA-popper .QA-popper-header i {
  margin: 0 0 0 auto;
  font-size: 20px;
  color: #999999;
  cursor: pointer;
}
.paas-pads-show-page .QA-popper .QA-popper-body {
  display: flex;
  flex-wrap: wrap;
}
.paas-pads-show-page .QA-popper .QA-popper-body .QA-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
  width: 50%;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}
.paas-pads-show-page .QA-popper .QA-popper-body .QA-item:nth-child(n+3) {
  margin: 12px 0 0 0;
}
.paas-pads-show-page .QA-popper .QA-popper-body .QA-item img.icon {
  width: 28px;
  height: 28px;
}
.paas-pads-show-page .QA-popper .QA-popper-body .QA-item img.icon.active {
  display: none;
}
.paas-pads-show-page .QA-popper .QA-popper-body .QA-item span {
  margin: 8px 0 0 0;
  font-weight: 400;
  font-size: 12px;
  color: #999999;
}
.paas-pads-show-page .QA-popper .QA-popper-body .QA-item:hover {
  background: rgba(255, 255, 255, 0.2);
}
.paas-pads-show-page .QA-popper .QA-popper-body .QA-item:hover img.icon:not(.active) {
  display: none;
}
.paas-pads-show-page .QA-popper .QA-popper-body .QA-item:hover img.icon.active {
  display: block;
}
.paas-pads-show-page .QA-popper .QA-popper-body .QA-item:hover span {
  color: #ffffff;
}
.paas-pads-show-page .evaluation-templation-dropdown .template-dropdown-menu-option {
  max-width: 300px;
  margin-bottom: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.paas-pads-show-page .user-avatar-tooltip .v-popper__wrapper .v-popper__inner div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.paas-pads-show-page .user-avatar-tooltip .v-popper__wrapper .v-popper__inner div .user-info {
  flex-direction: row;
  justify-content: center;
  font-weight: 400;
  font-size: 12px;
  color: #999999;
}
.paas-pads-show-page .user-avatar-tooltip .v-popper__wrapper .v-popper__inner div .user-info .username {
  margin: 0 4px;
  font-weight: 600;
  font-size: 12px;
  color: #ffffff;
}
.paas-pads-show-page .user-avatar-tooltip .v-popper__wrapper .v-popper__inner div .split-line {
  margin: 4px 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.paas-pads-show-page .user-avatar-tooltip .v-popper__wrapper .v-popper__inner div .visual-follow {
  font-weight: 400;
  font-size: 12px;
  color: #999;
}
.paas-pads-show-page .el-message-box .el-message-box__title {
  color: #fff;
}
.paas-pads-show-page .el-message-box .el-message-box__message {
  color: #fff;
}

.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em;
}

.daterangepicker:before, .daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: "";
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
  float: none;
}

.daterangepicker.single .drp-selected {
  display: none;
}

.daterangepicker.show-calendar .drp-calendar {
  display: block;
}

.daterangepicker.show-calendar .drp-buttons {
  display: block;
}

.daterangepicker.auto-apply .drp-buttons {
  display: none;
}

.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px;
}

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
  padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}

.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.daterangepicker .calendar-table {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
}

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}

.daterangepicker td.week, .daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}

.daterangepicker td.in-range {
  background-color: #ebf4f8;
  border-color: transparent;
  color: #000;
  border-radius: 0;
}

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: #357ebd;
  border-color: transparent;
  color: #fff;
}

.daterangepicker th.month {
  width: auto;
}

.daterangepicker td.disabled, .daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #eee;
}

.daterangepicker .ranges li.active {
  background-color: #08c;
  color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto;
  }
  .daterangepicker .ranges ul {
    width: 140px;
  }
  .daterangepicker.single .ranges ul {
    width: 100%;
  }
  .daterangepicker.single .drp-calendar.left {
    clear: none;
  }
  .daterangepicker.single .ranges, .daterangepicker.single .drp-calendar {
    float: left;
  }
  .daterangepicker {
    direction: ltr;
    text-align: left;
  }
  .daterangepicker .drp-calendar.left {
    clear: left;
    margin-right: 0;
  }
  .daterangepicker .drp-calendar.left .calendar-table {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .daterangepicker .drp-calendar.right {
    margin-left: 0;
  }
  .daterangepicker .drp-calendar.right .calendar-table {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .daterangepicker .drp-calendar.left .calendar-table {
    padding-right: 8px;
  }
  .daterangepicker .ranges, .daterangepicker .drp-calendar {
    float: left;
  }
}
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto;
  }
  .daterangepicker .ranges {
    float: left;
  }
  .daterangepicker.rtl .ranges {
    float: right;
  }
  .daterangepicker .drp-calendar.left {
    clear: none !important;
  }
}
.start-video-title-wrap, #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet .tmeet-title-wrapper, #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .showmebug-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.start-video-title-wrap .action-item-title, #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet .tmeet-title-wrapper .action-item-title, #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .showmebug-title-wrapper .action-item-title {
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
}
.start-video-title-wrap .action-item-subtitle, #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet .tmeet-title-wrapper .action-item-subtitle, #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .showmebug-title-wrapper .action-item-subtitle {
  font-size: 12px;
  color: #999999;
  text-align: right;
  text-indent: 0.5em;
}
.start-video-title-wrap .action-item-subtitle.smb-pl-100, #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet .tmeet-title-wrapper .action-item-subtitle.smb-pl-100, #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .showmebug-title-wrapper .action-item-subtitle.smb-pl-100 {
  padding-left: 100px;
}

#beforeVideoStartModal .modal-dialog .modal-content {
  background: #222426;
  color: #fff;
}
#beforeVideoStartModal .modal-dialog .modal-content .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
#beforeVideoStartModal .modal-dialog .modal-content .modal-header-title {
  color: #fff;
}
#beforeVideoStartModal .modal-dialog .modal-content .modal-header i.smb-icon-close:hover {
  color: #fff;
}
#beforeVideoStartModal .modal-dialog .modal-content .modal-body {
  padding: 32px 20px;
}
#beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug {
  display: flex;
  align-items: center;
  outline: 2px solid #408cff;
  background: center/contain url(https://assets.showmebug.com/smb-rails/f10d173/assets/pads/icon-showmebug-bg-pc-dark-ea4d69ba464f061b11073ffdcd67280bc2494325da00e09149255c23441145ed.svg) no-repeat;
  margin-bottom: 32px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 24px;
  flex: 1;
  cursor: pointer;
  position: relative;
}
#beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .recommended-tag {
  position: absolute;
  top: 20px;
  left: 64px;
  background: #408cff;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 8px 8px 8px 4px;
  margin-right: 12px;
  display: flex;
  align-items: center;
}
#beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .action-item-logo-wrapper {
  background: #1b1b1b;
  border-radius: 8px;
  padding: 12px;
  margin-right: 12px;
}
#beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .showmebug-title-wrapper .action-item-sub-title.smb-pl-40 {
  padding-left: 40px;
}
#beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug:hover .mask {
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
}
#beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet {
  outline: 1px solid #424242;
  border-radius: 8px;
  padding: 24px;
  flex: 1;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
#beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet:hover {
  outline: 2px solid #408cff;
}
@media (max-width: 767.98px) {
  #beforeVideoStartModal .modal-dialog {
    max-width: 343px;
    margin: 0 auto;
  }
  #beforeVideoStartModal .modal-dialog .modal-content .modal-body {
    padding: 20px;
  }
  #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper {
    display: flex;
    flex-direction: column;
  }
  #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug {
    display: flex;
    flex-direction: row;
    padding: 32px 30px;
    margin-right: unset;
    margin-bottom: 20px;
    background: center/contain url(https://assets.showmebug.com/smb-rails/f10d173/assets/pads/icon-showmebug-bg-mobile-dark-649b91a605dee20e92eefce6e1b356940d2cff99740f26a3061ac6be74b07754.svg) no-repeat;
  }
  #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .recommended-tag {
    right: -20px;
    left: unset;
    top: -8px;
  }
  #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .showmebug-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .showmebug-title-wrapper .action-item-title {
    margin-top: unset;
  }
  #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .showmebug-title-wrapper .action-item-subtitle {
    margin-top: 8px;
    text-align: left;
    text-indent: unset;
  }
  #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .showmebug-title-wrapper .action-item-subtitle.smb-pl-40 {
    padding-left: 0px !important;
  }
  #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet {
    padding: 20px;
  }
  #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet .tmeet-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet .tmeet-title-wrapper .action-item-title {
    margin-top: unset;
  }
  #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet .tmeet-title-wrapper .action-item-subtitle {
    margin-top: 8px;
    text-align: left;
    text-indent: unset;
  }
  #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet .tmeet-title-wrapper .action-item-subtitle.smb-pl-100 {
    padding-left: 0px;
  }
}

.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content {
  background: #fff;
  color: #fff;
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-header-title {
  color: #fff;
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-header i.smb-icon-close {
  color: #666;
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-header i.smb-icon-close:hover {
  color: #fff;
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body {
  padding: 32px 20px;
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug {
  display: flex;
  align-items: center;
  outline: 2px solid #408cff;
  background: center/cover url(https://assets.showmebug.com/smb-rails/f10d173/assets/pads/icon-showmebug-bg-pc-white-64bcbdb0c98772a016acd75f0e257c02a1f75b925aec7d26fdd02540010e6831.svg) no-repeat;
  margin-bottom: 32px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 24px;
  flex: 1;
  cursor: pointer;
  position: relative;
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug:hover .mask {
  opacity: 1;
  background: rgba(64, 140, 255, 0.05);
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .recommended-tag {
  position: absolute;
  top: 20px;
  left: 64px;
  background: #408cff;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 8px 8px 8px 4px;
  display: flex;
  align-items: center;
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .action-item-logo-wrapper {
  background: #1b1b1b;
  border-radius: 8px;
  margin-right: 12px;
  padding: unset;
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .showmebug-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 12px;
  width: 100%;
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .showmebug-title-wrapper .action-item-title {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .showmebug-title-wrapper .action-item-subtitle {
  font-size: 12px;
  color: #ccc;
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet {
  outline: 1px solid #666;
  border-radius: 8px;
  padding: 24px;
  flex: 1;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet .action-item-logo-wrapper {
  background: #307cf4;
  border-radius: 8px;
  margin-right: 12px;
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet .tmeet-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 12px;
  width: 100%;
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet .tmeet-title-wrapper .action-item-title {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet .tmeet-title-wrapper .action-item-subtitle {
  font-size: 12px;
  color: #ccc;
  margin-top: 8px;
}
.non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet:hover {
  outline: 2px solid #408cff;
  background: rgba(255, 255, 255, 0.05);
}
@media (max-width: 767.98px) {
  .non-technology-interview #beforeVideoStartModal .modal-dialog {
    max-width: 343px;
    margin: 0 auto;
  }
  .non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body {
    padding: 20px;
  }
  .non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper {
    display: flex;
    flex-direction: column;
  }
  .non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug {
    display: flex;
    flex-direction: row;
    padding: 32px 30px;
    margin-right: unset;
    margin-bottom: 20px;
    background: center/contain url(https://assets.showmebug.com/smb-rails/f10d173/assets/pads/icon-showmebug-bg-mobile-white-640642a7af84bf5ad337762734347d0649b8e71ab1d6348ec19603e90676dc10.svg) no-repeat;
  }
  .non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .recommended-tag {
    right: -20px;
    left: unset;
    top: -8px;
  }
  .non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .showmebug-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .showmebug-title-wrapper .action-item-title {
    margin-top: unset;
  }
  .non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .showmebug-title-wrapper .action-item-subtitle {
    margin-top: 8px;
    text-align: left;
    text-indent: unset;
  }
  .non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-showmebug .showmebug-title-wrapper .action-item-subtitle.smb-pl-40 {
    padding-left: 0px !important;
  }
  .non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet {
    padding: 20px;
  }
  .non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet .tmeet-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet .tmeet-title-wrapper .action-item-title {
    margin-top: unset;
  }
  .non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet .tmeet-title-wrapper .action-item-subtitle {
    margin-top: 8px;
    text-align: left;
    text-indent: unset;
  }
  .non-technology-interview #beforeVideoStartModal .modal-dialog .modal-content .modal-body .start-video-wrapper .operation-tmeet .tmeet-title-wrapper .action-item-subtitle.smb-pl-100 {
    padding-left: 0px;
  }
}

#trialVideoInitLoadingModal {
  position: fixed;
  bottom: unset;
  right: unset;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #1890ff;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  font-size: 14px;
}
#trialVideoInitLoadingModal .loading-animation {
  display: flex;
}
#trialVideoInitLoadingModal .loading-animation.hidden {
  display: none;
}
#trialVideoInitLoadingModal.hidden {
  display: none;
}
#trialVideoInitLoadingModal .loading-btn {
  font-size: 14px;
  width: 500px;
  padding: 80px 0 60px;
  background-color: #1f1f1f;
}
#trialVideoInitLoadingModal .loading-btn .subtitle {
  color: #1890ff;
  margin-bottom: 60px !important;
}
#trialVideoInitLoadingModal .loading-btn .modal-confirm-btn {
  padding: 8px 20px;
  background-color: #1890ff;
  border-radius: 3px;
  color: #fff;
  border: none;
}
#trialVideoInitLoadingModal .loading-btn .modal-confirm-btn:hover {
  text-decoration: none;
}
#trialVideoInitLoadingModal .loading-btn .modal-confirm-btn:focus {
  outline: unset;
}
#trialVideoInitLoadingModal .loading-btn .modal-dismiss-btn {
  padding: 8px 24px;
  border-radius: 3px;
  border: 1px solid #333;
  color: #cccccc;
  margin-right: 16px;
  background-color: unset;
}
#trialVideoInitLoadingModal .loading-btn .modal-dismiss-btn:hover {
  text-decoration: none;
  border-color: #333;
  opacity: 0.5;
}
#trialVideoInitLoadingModal .loading-btn .modal-dismiss-btn:focus {
  outline: unset;
}
#trialVideoInitLoadingModal.trial-video-non-technology .loading-btn {
  background-color: #555555;
}
#trialVideoInitLoadingModal.trial-video-non-technology .loading-btn .subtitle,
#trialVideoInitLoadingModal.trial-video-non-technology .loading-btn .modal-confirm-btn,
#trialVideoInitLoadingModal.trial-video-non-technology .loading-btn .modal-dismiss-btn,
#trialVideoInitLoadingModal.trial-video-non-technology .loading-btn .fa-spinner::before {
  color: #ffffff;
}
#trialVideoInitLoadingModal.trial-video-non-technology .loading-btn .modal-dismiss-btn {
  border: 1px solid #666;
}
#trialVideoInitLoadingModal.trial-video-non-technology .loading-btn .modal-dismiss-btn:hover {
  opacity: 0.5;
}

@keyframes drawer-fade-in {
  0% {
    opacity: 0;
    transition: translate(0px, 0px);
  }
  100% {
    opacity: 1;
    transition: translate(100%, 0px);
  }
}
.drawer-fade-enter-active {
  animation: el-drawer-fade-in 0.5s;
}

.drawer-fade-leave-active {
  animation: el-drawer-fade-in 0.5s reverse;
}

.invalid-feedback {
  color: #d9574c;
}

.form-control.is-invalid {
  border-color: #d9574c;
}

input:focus::placeholder {
  color: transparent;
}

.smb-custom-control-label::before {
  background-color: transparent;
  border-color: #999;
}

.smb-custom-checkbox .smb-custom-control-input:hover:not(:checked):not(:disabled) ~ .smb-custom-control-label::before {
  border-color: #999;
}
