/* DARKS */
/* GREENS */
/* pallete one */
/* pallete two */
/* gradiants */
/* screen */
/* text */
* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #181818;
  color: white;
}

main {
  padding: 0 50px;
}
@media only screen and (max-width: 768px) {
  main {
    padding: 0 16px;
  }
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

li a {
  font-size: 14px;
  font-weight: 400;
}

a {
  text-decoration: none;
}
a.icon svg {
  width: 25px;
}

address {
  font-size: 14px;
}

.custom-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.custom-flex.align-items-start {
  align-items: flex-start;
}

p {
  font-size: 16px;
}

section {
  width: 100%;
}

h2 {
  font-size: 30px;
  font-weight: 300;
  line-height: 34px;
  margin-bottom: 20px;
}
h2 strong {
  font-weight: 600;
  color: #cbfc01;
  margin-bottom: 14px;
}

button {
  font-size: 14px;
  background: #cbfc01;
  border: none;
  color: #1e1e1e;
  padding: 3px 12px;
  border: solid 1px #cbfc01;
  cursor: pointer;
}

select {
  height: 29px;
  border: none;
  background: #cbfc01;
  cursor: pointer;
}

textarea:focus,
input:focus,
select:focus {
  outline: none;
}

[data-status=float-down] [data-float] {
  display: none;
}

body::-webkit-scrollbar,
.scroll::-webkit-scrollbar {
  width: 4px;
}

body::-webkit-scrollbar-track,
.scroll::-webkit-scrollbar-track {
  box-shadow: none;
}

body::-webkit-scrollbar-thumb,
.scroll::-webkit-scrollbar-thumb {
  background-color: black;
  outline: 1px solid black;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-start {
  justify-content: flex-start;
  align-content: flex-start;
}
.flex-end {
  justify-content: flex-end;
  align-content: flex-end;
}

.wrap {
  flex-wrap: wrap;
}

.w-100 {
  width: 100%;
}
.w-50 {
  width: 50%;
}
.w-auto {
  width: auto;
}

.ql-editor {
  color: black;
}

.click {
  cursor: pointer;
}

.lava {
  background: linear-gradient(90deg, #fe6c3b 0%, rgb(255, 21, 168) 100%);
}

input,
input:focus,
input:focus-visible,
input:active,
select,
select:focus,
select:focus-visible,
select:active {
  border: none;
  border-bottom: 1px solid white;
  cursor: pointer;
  background-color: #2d2d31;
}

body {
  background-color: #2d2d31;
}

b {
  color: white;
}

main {
  padding: 0;
}

#app {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#app .content-code {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#app code {
  width: 50%;
  color: #fff;
  padding: 16px;
  margin: 8px 0;
}
@media only screen and (max-width: 768px) {
  #app code {
    width: 100%;
  }
}
#app code.schema {
  background-color: black;
}
#app code[index] {
  margin-top: 0;
}
#app code select,
#app code input {
  color: white;
}
#app code[editor-schema] div + br {
  display: none;
}
#app code button {
  background-color: transparent;
  cursor: pointer;
  color: #0fc51d;
  border: solid 1px #0fc51d;
  padding: 6px 15px;
}
#app code button.delete {
  color: #c50f4a;
  border: solid 1px #c50f4a;
}
#app .line {
  width: 100%;
  display: flex;
}
#app comment {
  color: rgba(10, 217, 10, 0.8784313725);
}
#app class-css {
  color: #ff62ec;
}
#app attr-css {
  color: #00d0ff;
}
