header {
  width: 100%;
  height: 52px;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(to right, rgb(13, 115, 119), rgb(104, 26, 119)) 1;
  border-image-slice: 1;
}

header #logo {
  background-image: url("/static/img/logo.png");
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: 11px 14px;
  padding: 17px 0 0 43px;
  float: left;
  height: 23px;
}

header #logo a {
  color: #E7E9EB;
}

header #login {
  float: right;
  padding: 15px 20px;
  height: 23px;
}

header #languages {
  float: right;
  padding: 15px 20px;
  height: 23px;
}
header #languages .current-language {
  text-transform: uppercase;
}
header #languages .language-link {
  text-transform: uppercase;
}

footer {
  width: 100%;
  border-top: 2px solid transparent;
  border-image: linear-gradient(to right, rgb(58, 71, 118), rgb(104, 26, 119)) 1;
  border-image-slice: 1;
  padding: 40px 0;
}
footer .copyright {
  float: right;
  text-align: right;
}

.menu {
  width: 172px;
}

div.menu a {
  color: #E7E9EB;
  text-decoration: none;
}

div.menu ol {
  list-style: none;
  padding: 0px 0 0px 0;
  margin: 0;
  line-height: normal;
}

div.menu ol li {
  list-style: none;
  padding: 10px 0 10px 20px;
  cursor: pointer;
}

div.menu ol.lvl2 li {
  padding: 10px 0 10px 40px;
}

div.menu ol li.active, div.menu ol li:hover {
  border-right: 3px solid #1dbec4;
  background-color: #212121;
  color: #1dbec4;
}

.mobile-menu-button {
  width: 50px;
  height: 50px;
  float: right;
  background: url("/static/img/bars.png") no-repeat center;
  display: none;
}

.mobile-menu {
  display: none;
  float: right;
  position: absolute;
  z-index: 10;
  background-color: #212121;
  top: 54px;
  right: 0;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  border-image: linear-gradient(to right, rgb(64, 65, 119), rgb(104, 26, 119)) 1;
}

.header {
  padding: 15px 30px 0px 36px;
}

.valuable-content {
  background-color: #191919;
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  padding: 20px;
}

.valuable-content-shadow {
  box-shadow: inset 0 0 12px 12px #212121;
  background: linear-gradient(198deg, rgb(13, 115, 119) 0%, rgb(104, 26, 119) 100%);
  padding: 18px;
  margin: 22px;
  border-radius: 5px;
}

.code {
  font-family: monospace;
}

.button {
  cursor: pointer;
}

input.button:hover, div.big_option_button:hover {
  background: linear-gradient(198deg, rgb(13, 115, 119) 0%, rgb(104, 26, 119) 100%);
}

input.small {
  font-size: 13px;
  padding: 8px;
}

.grayed-out {
  opacity: 0.4;
}

.centered {
  text-align: center;
}
.centered div {
  margin: 20px 0;
}

.hidden {
  display: none;
}

.form {
  margin: 0 auto;
}
.form td {
  padding: 10px;
}

form {
  line-height: 200%;
}
form input {
  padding: 10px;
  border-radius: 10px;
  font-size: 15px;
}

.admin-form {
  margin: 0 28px 0 0;
}
.admin-form textarea {
  height: 110px;
}

#multiple-result {
  width: 530px;
  height: 300px;
}

div.big_option_button {
  margin: 30px;
  width: 400px;
  height: 250px;
  line-height: 250px;
  text-align: center;
  color: #E7E9EB;
  text-decoration: none;
  border: 1px solid #1dbec4;
  border-radius: 20px;
  font-size: 22px;
  float: left;
}

.full-width {
  width: 100%;
}

.refresh-button {
  cursor: pointer;
  width: 25px;
  height: 25px;
  background: url("/static/img/refresh.png") no-repeat center center;
  display: inline-block;
}

.copy-button {
  cursor: pointer;
  width: 25px;
  height: 25px;
  background: url("/static/img/copy.png") no-repeat center center;
  display: inline-block;
}

div#control-pane {
  width: 540px;
  text-align: right;
  margin: -50px auto 0 auto;
}

.transparent {
  opacity: 0.4;
}

.transparent:hover {
  opacity: 1;
}

.pages {
  text-align: center;
  margin: 30px 0;
}

.small-button {
  font-size: 14px;
  display: block !important;
  line-height: 17px !important;
  cursor: pointer;
  font-style: normal;
}

textarea.encoding {
  box-sizing: border-box;
  width: 100%;
  height: 300px;
}

.control-pane-encoding {
  width: 100%;
  height: 44px;
  text-align: right;
  margin: -47px auto 0 auto;
}
.control-pane-encoding .control-pane-encoding-internal {
  margin-right: 10px;
}

#control-pane-encoded {
  float: right;
  width: 470px;
  text-align: right;
  margin: -50px auto 0 auto;
}

.flex-container {
  display: flex;
  gap: 20px;
}

.column {
  flex: 1;
  /* Or, for fixed widths: */
  /* width: 50%; */
}

@media only screen and (max-width: 480px) {
  .mobile-hide {
    display: none;
  }
  .sidebar {
    display: none;
  }
  #languages {
    display: none;
  }
  .content {
    min-width: unset !important;
    width: unset !important;
  }
  #login {
    display: none;
  }
  .mobile-menu-button {
    display: block !important;
  }
  .header {
    padding: 0 !important;
  }
  .valuable-content-shadow {
    margin: 0 !important;
  }
  #multiple-result {
    width: 90% !important;
  }
  div.big_option_button {
    width: 75% !important;
    height: 150px !important;
    line-height: 140px !important;
  }
  #ulid-pregenerated {
    font-size: 20px;
  }
  .encoding {
    width: 93% !important;
    height: 190px !important;
    float: none !important;
  }
  .container {
    display: block !important;
  }
  footer .other-tools {
    padding: 0 20px;
  }
  footer .copyright {
    float: left !important;
    text-align: left !important;
    padding: 40px 20px;
  }
  .blog-container {
    grid-template-columns: 1fr !important;
  }
  .blog-header {
    padding: 15px 0 !important;
  }
  .post-brief {
    padding: 15px 0 !important;
    line-height: 1.5 !important;
  }
  .post-text {
    padding: 15px 0px 50px 0px !important;
  }
}
@media only screen and (max-width: 768px) {
  /* Mobile-specific styles */
}
.blog-container {
  margin: 20px 0;
  display: grid;
  /* Creates two columns of equal width (1 fraction each) */
  grid-template-columns: 1fr 1fr;
  /* Optional: Adds space between grid items */
  gap: 20px;
}
.blog-container .blog-item {
  border: 2px solid transparent;
  padding: 10px;
  cursor: pointer;
}
.blog-container .blog-item .blog-title {
  font-size: 1.2em;
  font-weight: bold;
  text-align: right;
}
.blog-container .blog-item .blog-brief {
  margin: 15px 0 10px 0;
  line-height: 1.5;
}
.blog-container .blog-item img {
  max-width: 100%;
  height: auto;
}
.blog-container .blog-item .blog-date-TTR {
  font-size: 0.8em;
  color: gray;
}
.blog-container .blog-item .blog-date-TTR span {
  float: right;
}
.blog-container .blog-item:hover {
  border-image: linear-gradient(to bottom right, rgb(13, 115, 119), rgb(104, 26, 119)) 1;
  border-image-slice: 1;
}

.blog-navigation {
  padding: 15px 15px 30px 15px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.blog-navigation div {
  text-align: center;
}
.blog-navigation div:first-child {
  text-align: left;
}
.blog-navigation div:last-child {
  text-align: right;
}

.blog-header {
  padding: 15px 30px;
}

.post-brief {
  padding: 15px 30px;
  line-height: 1.5;
}

.post-date-TTR {
  padding: 15px 30px;
  font-size: 0.8em;
  color: gray;
}
.post-date-TTR span {
  float: right;
}

.post-image {
  text-align: center;
  margin: 20px 0 0 0;
}
.post-image img {
  height: auto;
  max-width: 100%;
  margin: 10px 0;
}

.post-text {
  padding: 15px 30px 50px 30px;
  font-size: 1.2em;
  line-height: 1.6;
  text-align: justify;
}

.faq-list {
  padding: 20px;
}

.faq-item {
  cursor: pointer;
  padding: 15px;
  margin: 20px 0;
  border: 2px solid transparent;
  border-image: linear-gradient(175deg, rgb(13, 115, 119), rgb(104, 26, 119)) 1;
  border-image-slice: 1;
  line-height: 1.5;
}

.inactive {
  opacity: 40%;
}

.faq-question {
  font-size: 1.2em;
}

.faq-answer {
  padding: 20px 10px 10px 10px;
}

.faq-cursor {
  position: absolute;
  left: 100%;
  margin: 0 0 0 -102px;
}

body {
  margin: 0;
  background-color: #212121;
  color: #E7E9EB;
  font-family: -apple-system, "system-ui", "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body .container {
  max-width: 1264px;
  width: 100%;
  background: none;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  flex-grow: 1; /* Allows main content to expand and push footer down */
}

body .sidebar {
  position: sticky;
  width: auto;
  border-right: 2px solid transparent;
  border-image: linear-gradient(to bottom, rgb(42, 86, 119), rgb(72, 57, 118)) 1;
  border-image-slice: 1;
}

body .content-wrapper {
  padding: 0 0 0 1px;
}

body .content {
  font-size: 16px;
  background-color: #212121;
  position: relative !important;
  width: 1051px;
  min-width: 1051px;
  padding: 20px;
}
body .content h1:first-child {
  margin-top: 0;
}

h1 {
  font-weight: normal;
  font-size: 1.9em;
}

h2 {
  font-weight: normal;
}

a {
  color: #1dbec4;
}

a:visited {
  color: #4ff0f6;
}

p, ul, ol {
  line-height: 23px;
}
p span, ul span, ol span {
  color: #1dbec4;
}

input, textarea, select {
  background-color: #212121;
  border: 1px solid #1dbec4;
  border-radius: 10px;
  color: #E7E9EB;
  padding: 10px;
  font-size: 15px;
}

textarea {
  padding: 12px;
  border-radius: 10px;
}

input:active, textarea:active {
  border: 1px solid #1dbec4;
}

input:focus, textarea:focus {
  border: 1px solid #1dbec4;
}

.invalid {
  border-color: rgb(104, 26, 119);
}

.warning {
  background: rgb(13, 115, 119);
  background: linear-gradient(198deg, rgb(13, 115, 119) 0%, rgb(104, 26, 119) 100%);
  color: #FFF;
  padding: 15px 10px 15px 15px;
  border-radius: 5px;
}
.warning i {
  margin: 0 10px 0 0;
}
.warning span {
  color: #999999;
}

.no-underscore {
  text-decoration: none;
}

.missing-text {
  border: 1px dashed #a30000;
}

/*# sourceMappingURL=style.css.map */
