.select {
  border: 1px solid #687580;
  border-radius: 8px;
  padding-left: 8px;
  padding-right: 8px;
  appearance: none;
  cursor: pointer;
  background: url(/icons/downarrow.svg) 97% center no-repeat !important;
  background-position: calc(100% - 0.5rem), 100% 0;
  background-size: 1.5em 1.5em;
  background-repeat: no-repeat;
}

.select option {
  background-color: #3c3c3c;
}

.codeblock-code {
  margin-left: 0px !important;
}

.container {
  width: auto;
}

@media screen and (max-width: 833px) {
  .container {
    max-width: none;
  }
}

@media screen and (min-width: 834px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1512px) {
  .container {
    margin-left: 9.25rem;
    margin-right: 9.25rem;
  }
}

@media screen and (min-width: 1728px) {
  .container {
    margin-left: 13rem;
    margin-right: 13rem;
  }
}

@media screen and (min-width: 1920px) {
  .container {
    margin-left: auto;
    margin-right: auto;
    max-width: 94rem;
  }
}

.text-site-display-xs {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

@media screen and (min-width: 834px) {
  .text-site-display-xs {
    font-size: 24px;
    line-height: 32px;
  }
}

.code-title {
  border-bottom: 2px solid #3d4751;
}

.code-title.disabled {
  color: #3d4751;
}

.response-container {
  min-height: 720px;
  margin: 0 !important;
  border-width: 0px 2px 0px 2px;
  border-style: solid;
  border-color: #3d4751;
}

.variant-ghost-warning {
  color: #ff5555;
  text-transform: capitalize;
}

.variant-ghost-error {
  color: #ff5555;
  text-transform: capitalize;
}

.variant-ghost-success {
  color: #53bf9d;
}

.analyze-button {
  background: #13926a;
  padding: 8px 12px 8px 12px;
  font-size: 14px;
}

.analyze-button:disabled {
  background: #959ea6;
}

.clear-button {
  color: #16a87a;
  font-size: 14px;
}

.code-container {
  background: #272822;
}

.actions-container {
  width: calc(100vw - 32px) !important;
}

@media screen and (min-width: 1513px) {
  .actions-container {
    width: 100% !important;
  }
}

.actions-root {
  border-bottom: 2px solid #272e34;
}

.textarea-container {
  min-height: 720px;
  height: 720px;
  border-right: 2px solid #111111;
}

#highlighting .line-number-rows {
  position: absolute;
}

#editing,
#highlighting {
  /* Both elements need the same text and space styling so they are directly on top of each other */
  margin: 10px;
  padding: 10px;
  border: 0;
  width: calc(100% - 32px);
  padding-left: 40px;
  height: 648px;
}
#editing,
#highlighting,
#highlighting * {
  /* Also add text styles to highlighing tokens */
  font-family: monospace !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  tab-size: 2;
}

#editing,
#highlighting {
  /* In the same place */
  position: absolute;
  top: 38px;
  left: 0;
}

/* Move the textarea in front of the result */

#editing {
  z-index: 1;
  outline: none !important;
}
#highlighting {
  z-index: 0;
}

/* Make textarea almost completely transparent */

#editing {
  color: transparent;
  background: transparent;
  caret-color: white; /* Or choose your favourite color */
}

/* Can be scrolled */
#editing,
#highlighting {
  overflow: auto;
  white-space: nowrap; /* Allows textarea to scroll horizontally */
}

/* No resize on textarea */
#editing {
  resize: none;
}

/* Paragraphs; First Image */
.code-container {
  font-family: monospace;
}
p code {
  border-radius: 2px;
  background-color: #eee;
  color: #111;
  white-space: pre-line;
}

/* Syntax Highlighting from prism.js starts below, partly modified: */

/* PrismJS 1.23.0
https://prismjs.com/download.html#themes=prism-funky&languages=markup */
/**
 * prism.js Funky theme
 * Based on “Polyfilling the gaps” talk slides http://lea.verou.me/polyfilling-the-gaps/
 * @author Lea Verou
 */

code[class*="language-"],
pre[class*="language-"] {
  font-family: monospace;
  font-size: 1em;
  text-align: left;
  white-space: pre !important;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  background: transparent !important;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;

  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

/* Code blocks */
pre[class*="language-"] {
  padding: 0.4em 0.8em;
  box-shadow: none !important;
  margin: 0.5em 0;
  overflow: auto;
}

code[class*="language-"] {
  color: white;
  margin-left: -76px;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
  padding: 0.2em;
  border-radius: 0 !important;
  box-shadow: none !important;
  white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #aaa;
}

.token.punctuation {
  color: #999;
}

.token.namespace {
  opacity: 0.7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol {
  color: #0cf;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin {
  color: yellow;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.token.variable,
.token.inserted {
  color: yellowgreen;
}

.token.atrule,
.token.attr-value,
.token.keyword {
  color: deeppink;
}

.token.regex,
.token.important {
  color: orange;
}

.token.important,
.token.bold {
  font-weight: bold;
}
.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}

.token.deleted {
  color: red;
}

/* Plugin styles: Diff Highlight */
pre.diff-highlight.diff-highlight > code .token.deleted:not(.prefix),
pre > code.diff-highlight.diff-highlight .token.deleted:not(.prefix) {
  background-color: rgba(255, 0, 0, 0.3);
  display: inline;
}

pre.diff-highlight.diff-highlight > code .token.inserted:not(.prefix),
pre > code.diff-highlight.diff-highlight .token.inserted:not(.prefix) {
  background-color: rgba(0, 255, 128, 0.3);
  display: inline;
}

.line-numbers .line-numbers-rows {
  border-right: 0px !important;
  font-size: 16px;
}

.line-numbers-rows > span:before {
  color: white;
  margin-top: -1px;
  margin-bottom: 1px;
}

.line-numbers > .disabled > .line-numbers-rows > span:before {
  color: #959ea6 !important;
}

#editing::-moz-placeholder {
  color: #959ea6;
}
#editing:-ms-input-placeholder {
  color: #959ea6;
}
#editing::-webkit-input-placeholder {
  color: #959ea6;
}

/* End of prism.js syntax highlighting*/
