body
{
  font-family: monospace, monospace;
  font-size: 15px;
  background-color: #fdfdfd;
  color:#091411;
  word-wrap: break-word;
  line-height: 1.1;
}

img {
  width: 100%;
  height: 100%;
}

#mainworkflow
{
  width: 40em;
  margin:0 auto;
}

#distribusiverse {
  margin-bottom: 11em;
}
#distribusi-index {
  padding-left: 1em;
}
.description > textarea {
  width: 100%;
  height: 10em;
  resize: none;
}
textarea#description {
  width: 100%;
  height: 20em;
  resize: none;
}
div#buttons{
  position: fixed;
  top: 0em;
  padding-top: 0.7em;
  padding-bottom: 0.2em;
  right: 0.5em;
  width: 100%;
  display:flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  z-index: 100;
  background-color: #fdfdfd;
}

div#buttons .distribusi input{
  border: none;
  background: #9de457;
  text-decoration: none;
  margin: 0.2em;
}
div#buttons .distribusi input:hover{
  background: #091411;
  color: #6df2cc;
}
fieldset.required {
  border: none;
}

fieldset.required > ul {
  padding-left: 0px;
}

fieldset.required > ul > li{
  list-style-type: none;
}

fieldset.tagfield > input {
  width: 100%;
  max-width: 90%;
}

input {
  border: none;
  background: #9de457;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin: 0.2em;
  padding: 8px 12px;

  cursor: pointer;
  border-width: 1px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  -webkit-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
}

input[type="button"]:hover,
input[type="submit"]:hover {
  background: #091411;
  color: #6df2cc;
  cursor: pointer;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

input[type="submit"]:disabled:hover,
input[type="submit"]:disabled,
input[type="submit"]:disabled:focus {
  background-color: #2D3039;
  color: #d28cff;
}

input[type=text], input[type=file] {
  color: #091411;
  width: 18em;
  max-width: 18em;
  background-color: #fdfdfd;
  border: 1px solid #9de457;
}

.info {
  background-color: #e457e263;
}
input[type="button"].info:hover {
  background: #4d1e4c;
  color: #fff;
}


.error {
  font-size: 110%;
  color: #F92020;
}

#delete {
  color: black;
  background-color: #F92020;
}
#delete:hover {
  color: #F92020;
  background-color: black;
}

/* STOLEN GOODS */
#fancyboi::before {
	content: "$ ";
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes flash {
    50% { opacity: 0; }
  }
  @keyframes reveal {
    from { width: 2em; } /* Width of ::before */
    to { width: 55%; }
  }
  #fancyboi {
    font-size: 24px;
    width: 70%;
    padding: 0.5em;
    overflow: hidden;
    white-space: nowrap;
    animation: reveal 2s linear;
    text-overflow: "█";
    background-color: #9de457;
    margin: auto;
    font-weight: bold;
  }
  #fancyboi::after {
    content: "█";
    animation: flash 0.5s step-end infinite;
  }
}

#allcontent {
    margin-top: 3.5em;
    top: 3.5em;
    position: relative;
}

div.maincontent{
  width: 70%;
  border: 3px #9de457;
  margin-top: 0.5em;
  margin: auto;
  padding: 0.5em;
  border-style: outset;
}

.tags{
  background-color: #000;
  color: #fff;
  display: inline-block;
  padding-left: 4px;
  padding-right: 4px;
  text-align: center;
  margin: 1px;
  margin-top: 1em;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 2s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.code-example {
  width: 100%;
  color: black;
  padding: 1em;
  box-sizing: border-box;
  background: #9de457;
  outline: none;
  font-family: Courier, sans-serif;
  font-size: 16px;
}

@media only screen and (max-width: 460px) {
  #fancyboi {
    width: 89%;
    white-space: wrap;
    animation: none;
  }

  div.maincontent {
    width: 90%;
  }

  #mainworkflow {
    width: 95%;
  }

  div#buttons {
    max-width: 99%;
  }

  input {
    padding: 4px 6px;
  }

  .code-example {
    text-align:justify;
    white-space: pre-wrap;
    word-break: break-word;
  }
}
