@font-face {
  font-family: "EuclidSquare-Light";
  src: url(/fonts/EuclidSquare/EuclidSquare-Light.ttf);
  font-display: swap;
}
@font-face {
  font-family: "EuclidSquare-Regular";
  src: url(/fonts/EuclidSquare/EuclidSquare-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: "EuclidSquare-Medium";
  src: url(/fonts/EuclidSquare/EuclidSquare-Medium.ttf);
  font-display: swap;
}
@font-face {
  font-family: "EuclidSquare-Bold";
  src: url(/fonts/EuclidSquare/EuclidSquare-Bold.ttf);
  font-display: swap;
}
@font-face {
  font-family: "CascadiaMono-Light";
  src: url(/fonts/CascadiaMono/CascadiaMono-Light.ttf);
  font-display: swap;
}
@font-face {
  font-family: "CascadiaMono-Regular";
  src: url(/fonts/CascadiaMono/CascadiaMono-Regular.ttf);
  font-display: swap;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
html, body {
  position: absolute;
  width: 100%;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  background: #f9fafb;
}
.wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  /* z-index: 0; */
}
.dialog {
  position: fixed;
  top: 30px;
  left: 100px;
  width: 400px;
  padding: 20px;
  z-index: 9999999999;
  display: none;
  cursor: default !important;
}
.dialog-text {
  float: left;
  text-align: left;
  font-family: "EuclidSquare-Regular", Arial;
  font-size: 14px;
}
.dialog-close {
  float: right;
  text-align: right;
  font-size: 20px;
}
.dialog-close:hover {
  background: rgba(20, 20, 20, 0.1);
  padding: 0 2px;
  margin: 0 -2px;
  border-radius: 6px;
}
.dialog.dialog-style-success {
  background: #eeffe4;
  border: 1px solid #78ae59;
}
.dialog.dialog-style-error {
  background: #fcf0f0;
  border: 1px solid #d54747;
}
.dialog.dialog-style-warning {
  background: #fff2ab;
  border: 1px solid #cea51c;
}
.logo {
  position: relative;
  background-image: url(/images/logo.png);
  background-size: cover;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
}
.mobile-logo {
  position: fixed;
  background-image: url(/images/favicon.png);
  background-size: cover;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  z-index: 9999;
  display: none;
}
a {
  color: #509fef;
  font-family: "EuclidSquare-Regular", Arial;
}
a.separated {
  margin-left: 8px;
}
.spinner {
  animation: spin 1.5s linear infinite;
}
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 220px;
  height: 100%;
  background: #fff;
  border-right: 1px solid rgba(100, 100, 100, 0.4);
  overflow-y: scroll;
}
.sidebar .sidebar-wrapper {
  padding: 30px;
}
.sidebar-header {
  font-family: "EuclidSquare-Medium";
  color: #000;
  font-size: 16px;
  margin-top: 10px;
}
.sidebar-item {
  font-family: "EuclidSquare-Light";
  color: #777;
  font-size: 14px;
  cursor: pointer;
  display: block;
  margin-left: 14px;
  margin-top: 4px;
}
.sidebar-item:hover {
  text-decoration: underline;
}
.content-wrapper {
  position: absolute;
  width: calc(100% - 220px);
  height: 100vh;
  left: 220px;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 40px;
  overflow: scroll;
}
.content {
  width: 500px;
  padding-bottom: 100px;
}
.content .header {
  font-size: 20px;
  font-family: "EuclidSquare-Medium";
  color: #555;
}
.content p {
  font-size: 14px;
  font-family: "EuclidSquare-Regular";
  color: #999;
}
pre {
  position: relative;
  background: #eff1f3;
  color: #333;
  font-family: "CascadiaMono-Regular", Arial;
  font-size: 16px;
  width: 100%;
  overflow-x: scroll;
  padding: 14px;
  box-sizing: border-box;
  border-radius: 6px;
}
code {
  position: relative;
  background: #eff1f3;
  color: #333;
  font-family: "CascadiaMono-Regular", Arial;
  font-size: 14px;
  padding: 6px;
  border-radius: 6px;
}
pre a {
  color: #000 !important;
  font-family: "CascadiaMono-Light", Arial;
}
li {
  list-style-type: square;
  color: #555;
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.4;
}
li::marker {
  padding-left: 10px;
}
/* ul {
  margin-top: 8px;
} */
table {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 30px;
}
tr {
  background: #fff;
  border: 1px solid #ddd;
}
td, th {
  border: none;
  padding: 16px;
  font-size: 14px;
}
th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #ddd;
  color: #fff;
}
td .options {
  float: right;
  text-align: right;
}
td .options .stop-button {
  color: #dd0000;
}
td .options .stop-button:hover {
  position: relative;
  border-radius: 100%;
  outline: 2px solid #96c3f0;
  padding: 8px;
  margin: -8px;
  width: 12px;
  height: 12px;
}
.select {
  width: 300px;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: #e9e9ed;
  -webkit-appearance: none;
  color: #000;
}
.sidebar-header .icon {
  position: relative;
  width: 20px;
  vertical-align: bottom;
  margin-left: -10px;
}
.main-banner {
  width: 80%;
  padding: 100px;
  font-family: "EuclidSquare-Light", Arial;
  font-size: 60px;
  background: #fff;
  box-shadow: 0 5px 5px rgba(130, 130, 130, .1);
  border-radius: 20px;
  text-align: center;
  margin-bottom: 50px;
}
ul ul {
  padding-left: 15px !important;
}
@media only screen and (max-width:760px) {
  .sidebar {
    display: none;
  }
  .content-wrapper {
    width: 100%;
    left: 0;
  }
  .mobile-logo {
    display: block;
  }
  .content-wrapper {
    box-sizing: border-box;
  }
  .content {
    box-sizing: border-box;
    padding-top: 50px;
    width: auto;
    max-width: 500px;
  }
  .main-banner {
    width: auto;
    height: 200px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 28px;
  }
  pre {
    width: 100% !important;
  }
  .sidebar.mobile-toggle {
    display: block;
    z-index: 10;
    padding-top: 50px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }
  .sidebar-wrapper {
    padding-bottom: 100px !important;
  }
  .logo {
    display: none;
  }
}