* {
  transition: all 0.3s;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  font-family: "Cairo", sans-serif;
  cursor: default;
}

html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  line-height: 1.25rem;
  transition-duration: 1s;
  color: white;
}
body::-webkit-scrollbar {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sonic", sans-serif;
  margin: 0.25rem;
}

h3 {
  font-size: 25px;
}

img {
  max-width: 100%;
  height: auto;
}
img:not([src$=".svg"]) {
  border-radius: 0.5rem;
}

a {
  text-decoration: none;
  color: inherit;
}

[hidden] {
  display: none !important;
}

.bold {
  font-weight: bold;
}

.flex-container {
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opacity {
  text-transform: uppercase;
  opacity: 0.6;
}

.title {
  font-family: "Sonic", sans-serif;
  font-size: 50px;
}

body.default {
  background: #00d2ff;
  background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
}
body.night {
  background: #333333;
  background: linear-gradient(90deg, #333333 0%, #121212 100%);
}
body.night #customize_options img {
  filter: invert(100%);
}

@keyframes fadeSections {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@font-face {
  font-family: "Sonic";
  src: url("../fonts/sonic.ttf");
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/cairo.ttf");
}
:root {
  --custom-gradient: linear-gradient(90deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.fader {
  animation-name: fade;
  animation-duration: 1s;
}

.background-text {
  border-radius: 8px;
  padding: 0 16px;
  font-family: "Sonic", sans-serif;
  background-color: white;
  color: black;
}

.orange {
  background-color: orange;
}

.green {
  background-color: green;
}

.red {
  background-color: red;
}

.expanded {
  display: block !important;
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.expanded #page_output {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(75px);
  backdrop-filter: blur(75px);
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  border-radius: 0;
  border: 0;
  overflow: scroll;
}

.loader {
  padding: 20px;
  text-align: center;
  font-style: italic;
  color: #666;
}

.logo_content {
  position: relative;
}

.page-content {
  display: grid;
  grid-template-rows: 12.5% 87.5%;
  border: 1px solid white;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  height: 100%;
  overflow: hidden;
}

.ringdev {
  width: 100%;
  right: 0;
  top: 0;
  position: absolute;
}

.section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5px;
  border-radius: 8px;
  width: 92.5px;
  transition: all 0.3s;
}
.section:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.section.enabled {
  border: 1px solid white;
  background-color: rgba(255, 255, 255, 0.5);
  transition: width 0.3s, background-color 0.3s ease, box-shadow 0.3s ease;
}
.section.enabled:hover {
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1), 0 6px 20px rgba(255, 255, 255, 0.09);
}
.section.my_profile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 0;
  width: 92.5px;
  margin-left: 0;
  padding: 2.5px;
  border-radius: 8px;
  background-color: transparent;
  overflow: visible;
  transition: width 0.3s ease, margin-left 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.section.my_profile:hover, .section.my_profile:focus-within {
  width: 200px;
  margin-left: -107.5px;
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1), 0 6px 20px rgba(255, 255, 255, 0.09);
  z-index: 10;
}
.section.my_profile .logout {
  position: absolute;
  left: 25%;
  opacity: 0;
  border: none;
  background: none;
  color: white;
  font-size: 0.9em;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-10px);
}
.section.my_profile:hover .logout, .section.my_profile:focus-within .logout {
  opacity: 1;
  transform: translateX(0);
}
.section.my_profile .section-content {
  margin-left: auto;
  z-index: 1;
}

.section-content {
  display: flex;
  align-items: center;
  padding: 16px;
  margin: 2.5%;
}

.sections {
  width: 100%;
  height: 90%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  overflow: scroll;
  margin: 1rem 0;
}
.sections::-webkit-scrollbar {
  display: none;
}
.sections > .section {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75%;
  transform: skew(-10deg);
}
.sections > .section span {
  display: none;
  color: black;
  margin: 0 16px;
  animation: fadeSections 1.5s;
}
.sections .section-content span {
  width: 100%;
  justify-content: center;
  align-items: center;
}

#content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.status-message {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  /*&.working {
  	background: #e3f2fd;
  	border: 1px solid #90caf9;
  }

  &.deprecated {
  	background: #ffebee;
  	border: 1px solid #ef9a9a;
  }

  &.error {
  	background: #fff3e0;
  	border: 1px solid #ffcc80;
  }*/
}

.unavailable {
  display: none;
}

#container_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 10%;
}

#dev_branch {
  width: 45px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  padding: 0 2%;
  top: 45%;
  left: 40%;
  font-family: "Cairo", sans-serif;
  transform: skewX(-15deg);
  border-radius: 5px;
}

#header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 10%;
  padding: 0;
}

#header_content {
  width: 97.5%;
  padding: 0 1.25%;
  border-bottom: 1px solid white;
  display: flex;
  align-items: center;
  flex-direction: row;
  position: relative;
}
#header_content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.7;
  background: var(--custom-gradient);
}
#header_content > div {
  width: 50%;
}
#header_content > div:first-child {
  margin-left: 1.25%;
}
#header_content #customize_options {
  gap: 0.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: row;
}
#header_content .section {
  transform: skewX(-15deg);
}

#icon_currser > img {
  transform: skewX(-10deg);
}

#kernel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

#logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 50%;
  position: relative;
  padding: 0 5%;
}

#main_content {
  display: grid;
  width: 97.5%;
  height: 92.5%;
  margin: 1.25%;
}

#main_logo {
  opacity: 0.75;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sonic", sans-serif;
  font-size: 45px;
}

#notification {
  position: relative;
}
#notification ::after {
  display: none;
  align-items: center;
  justify-content: center;
  content: "";
  position: absolute;
  top: 30%;
  right: 35%;
  width: 1rem;
  height: 1rem;
  background-color: orangered;
  transition: opacity 0.5s ease-in-out;
  border-radius: 50%;
}

#popup {
  z-index: 1;
  display: none;
  position: fixed;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #00adef;
  color: white;
  padding: 10px;
  border: 1px solid white;
  border-radius: 6px;
}

#layout {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  height: 100vh;
}

@media (max-width: 768px) {
  #layout {
    flex-direction: column;
  }
  #layout #header {
    height: unset;
    width: 100%;
    margin: 1rem 0;
  }
  #layout #header > header {
    flex-direction: row;
  }
  #layout #header > header > div {
    height: 100%;
  }
  #layout #header > header > #container_logo {
    width: 25%;
    height: unset !important;
  }
  #layout #header > header > .sections {
    flex-direction: row;
    margin: 0 1rem;
    padding: 0 1rem;
  }
  #layout #header > header > .sections > .section > p > img {
    max-width: unset !important;
    width: 25px;
    height: auto;
  }
  #layout #kernel > #main_content > main .page-content {
    grid-template-rows: 10% 90%;
  }
  #layout #kernel > #main_content > main .page-content > #header_content {
    flex-direction: column;
    gap: 1rem;
  }
  #layout #kernel > #main_content > main .page-content > #header_content > div {
    width: 100%;
    margin: 0 auto;
  }
  #layout #kernel > #main_content > main .page-content > #header_content > div:first-child > h1 {
    margin: 1rem;
  }
  #layout #kernel > #main_content > main .page-content > #header_content > div:last-child {
    justify-content: right;
    height: unset;
  }
  #layout #kernel > footer {
    align-items: center;
  }
}
@media (max-width: 767px) and (orientation: portrait), (max-width: 1079px) and (orientation: landscape) {
  body.has-unavailable > *:not(.unavailable) {
    display: none !important;
  }
  body.has-unavailable .unavailable {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  body.has-unavailable .unavailable div {
    width: 90%;
    padding: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.25);
    margin: auto 5%;
    height: 50%;
    flex-direction: column;
    max-width: 400px;
  }
  body.has-unavailable .unavailable h1 {
    font-family: "Sonic", sans-serif;
    margin-bottom: 10px;
  }
  body.has-unavailable .unavailable p {
    text-align: center;
  }
}
footer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 5%;
}

header {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

p {
  margin-block-start: 0;
  margin-block-end: 0;
}/*# sourceMappingURL=index.css.map */