* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 1rem;
  font-family: Consolas,Menlo,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Courier New,monospace,serif;
  -webkit-tap-highlight-color: transparent;
}

html {
  height: 100%;
}

html:not([data-scroll='0']) a#login-marker-button {
  width: 160px;
  background-size: 12%;
  background-position: 10px;
  left: calc(50% - 80px);
  padding: 20px;
}

html:not([data-scroll='0']) a#login-marker-button > span {
  display: block;
  text-align: right;
  text-shadow: none;
  color: #333;
  font-size: 1.2rem;
}

@media (prefers-color-scheme: dark) {
  html:not([data-scroll='0']) a#login-marker-button > span {
    color: #eee;
  }
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  min-height: 100%;
}

#noscript {
  position: relative;
  margin-top: 20px;
}

#noscript > div {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (prefers-color-scheme: dark) {
  #noscript > div {
    background-color: #333;
  }
}

#noscript > div > * {
  font-size: 0.9rem;
}

#noscript > div > h2 {
  text-align: center;
}

#noscript > div > p {
  width: 80%;
  margin: 20px auto;
  text-align: center;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-animation-name: noscript;
          animation-name: noscript;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes noscript {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    color: red;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes noscript {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    color: red;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #333;
  }
}

::placeholder,
::-moz-placeholder {
  color: #282828;
  padding: 0 10px 0 35px;
}

@media (prefers-color-scheme: dark) {
  ::placeholder,
  ::-moz-placeholder {
    color: white;
  }
}

.header {
  width: 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  position: relative;
  z-index: 2001;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

.header-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 70px;
  background-color: #eeeeee22;
}

@media (prefers-color-scheme: dark) {
  .header-container {
    background-color: #333;
  }
}

.header-container-logo {
  width: 100%;
  height: 150px;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-container-logo-frame {
  height: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 15px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto 0 0 0;
}

.header-container-logo-frame-image {
  height: 100%;
  margin: auto auto 0 auto;
}

.header-container-logo-frame > span {
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.header-container-appName {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #393939;
}

@media (prefers-color-scheme: dark) {
  .header-container-appName {
    color: white;
  }
}

.header-container-appName-title {
  text-align: center;
  font-size: 2.7rem;
  text-shadow: 0px 0px 2px #555;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

@media (prefers-color-scheme: dark) {
  .header-container-appName-title {
    text-shadow: 0px 0px 2px #cfcfcf;
  }
}

.header-container-appName-title > span {
  position: absolute;
  bottom: -3px;
  right: -12px;
  font-weight: bold;
  font-size: 1.2rem;
  text-shadow: none;
}

.header-container-appName-subtitle {
  text-align: center;
  font-size: 1.5rem;
  text-shadow: 0px 0px 2px #888;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px auto;
  position: relative;
}

@media (prefers-color-scheme: dark) {
  .header-container-appName-subtitle {
    text-shadow: 0px 0px 2px #cfcfcf;
  }
}

.header-container-appName-subtitle > span {
  position: absolute;
  bottom: -6px;
  right: -12px;
  font-weight: bold;
  font-size: 1.2rem;
  text-shadow: none;
}

.header-offer {
  background-color: #c8c8c8;
  margin: 0 auto 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: black;
  padding: 10px 0 10px 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 0.8rem;
  font-family: 'Courier New', Courier, monospace;
  -webkit-box-shadow: 0 0 3px 1px black;
          box-shadow: 0 0 3px 1px black;
}

.header-offer pre {
  min-width: 260px;
  min-height: 200px;
  padding: 0.5rem;
  background-color: #fff;
  border-radius: 0.2rem;
  -webkit-box-shadow: inset 0 0 5px 1px #666;
          box-shadow: inset 0 0 5px 1px #666;
  font-size: 0.8rem;
  font-family: 'Courier New', Courier, monospace;
}

.header-offer span {
  font-size: 0.8rem;
  font-family: 'Courier New', Courier, monospace;
}

.header-offer > * {
  font-size: 0.8rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-shadow: 2px 2px 2px #eee;
  font-family: 'Courier New', Courier, monospace;
}

@media (prefers-color-scheme: dark) {
  .header-offer {
    color: white;
    background-color: #555;
  }
  .header-offer pre {
    min-width: 260px;
    min-height: 200px;
    color: #141313;
    background-color: #c8c8c8;
    text-shadow: 1px 1px 1px #b1b1b1;
    -webkit-box-shadow: inset 0 0 5px 1px black;
            box-shadow: inset 0 0 5px 1px black;
  }
  .header-offer > * {
    text-shadow: 0px 0px 0px black;
  }
}

.header-small {
  width: 100%;
  background-color: #d0d0d0;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 2001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 0 3px 1px black;
          box-shadow: 0 0 3px 1px black;
}

@media (prefers-color-scheme: dark) {
  .header-small {
    background-color: #222;
  }
}

.header-small-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.header-small-container-logo {
  height: 100%;
  float: left;
  clear: both;
}

.header-small-container-logo-frame {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.header-small-container-logo-frame-image {
  height: 60px;
  width: 60px;
  margin: 0 auto;
}

.header-small-container-logo-frame picture > span {
  font-weight: bold;
  font-size: 0.7rem;
  position: absolute;
  bottom: 0;
  right: -3px;
}

.header-small-container-appName {
  color: #393939;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (prefers-color-scheme: dark) {
  .header-small-container-appName {
    color: white;
  }
}

.header-small-container-appName-title {
  text-align: center;
  font-size: 1rem;
  text-shadow: 0px 0px 2px #555;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
}

.header-small-container-appName-subtitle {
  text-align: center;
  font-size: 0.6rem;
  text-shadow: 0px 0px 2px #888;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: none;
}

.header-small-container-route {
  margin: auto 20px auto auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: right;
}

.header-small-container-route > span {
  color: #666;
  height: 20px;
  font-size: 0.8rem;
}

.header-small-container-route > span.danger {
  color: red;
}

.header-small-toolbar {
  height: 40px;
  background-color: #aaaaaa55;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1px;
}

@media (prefers-color-scheme: dark) {
  .header-small-toolbar {
    background-color: black;
  }
}

@media screen and (orientation: landscape) {
  .header-small-toolbar {
    position: fixed;
    top: -50px;
    width: 100%;
    top: 0;
    height: 50px;
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #eeeeee00;
    padding: 5px 0;
  }
  .header-small-toolbar > a {
    height: 100%;
  }
  .header-small-toolbar > a.active {
    background-color: #f2f2f2;
  }
}

@media screen and (orientation: landscape) and (prefers-color-scheme: dark) {
  .header-small-toolbar > a.active {
    background-color: rgba(85, 85, 85, 0);
  }
}

@media screen and (orientation: landscape) and (prefers-color-scheme: dark) {
  .header-small-toolbar {
    background-color: #22222200;
  }
}

.header-small-toolbar > a {
  width: 40px;
  height: 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-small-toolbar > a.active {
  background-color: #d0d0d0;
}

.header-small-toolbar > a.active picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.header-small-toolbar > a.active picture img {
  height: 30px;
  width: 30px;
  margin: auto;
  -webkit-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  opacity: 1;
}

.header-small-toolbar > a.active picture img:hover, .header-small-toolbar > a.active picture img:focus, .header-small-toolbar > a.active picture img.active {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all ease 0.1s;
  transition: all ease 0.1s;
}

.header-small-toolbar > a picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.header-small-toolbar > a picture img {
  height: 30px;
  width: 30px;
  margin: auto;
  -webkit-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  opacity: 0.3;
}

.header-small-toolbar > a picture img:hover, .header-small-toolbar > a picture img:focus, .header-small-toolbar > a picture img.active {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all ease 0.1s;
  transition: all ease 0.1s;
}

@media (prefers-color-scheme: dark) {
  .header-small-toolbar > a.active {
    background-color: #555;
  }
}

@media screen and (prefers-color-scheme: dark) and (orientation: landscape) {
  .header-small-toolbar > a.active {
    background-color: #55555005;
  }
}

@media (prefers-color-scheme: dark) {
  .header-small-toolbar .active img {
    opacity: 1;
  }
  .header-small-toolbar .active img:hover, .header-small-toolbar .active img:focus, .header-small-toolbar .active img.active {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: all ease 0.1s;
    transition: all ease 0.1s;
    opacity: 1;
  }
}

@media screen and (max-width: 500px) {
  .header-small-toolbar > a {
    gap: 1px;
  }
  .header-small-toolbar img {
    height: 30px;
    width: 30px;
  }
  .header-small-toolbar img:hover, .header-small-toolbar img:focus, .header-small-toolbar img:active {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-transition: all ease 0.1s;
    transition: all ease 0.1s;
  }
}

@media screen and (max-width: 350px) {
  .header-small-toolbar > a {
    gap: 0px;
  }
  .header-small-toolbar img {
    height: 25px;
    width: 25px;
  }
  .header-small-toolbar img:hover, .header-small-toolbar img:focus, .header-small-toolbar img:active {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-transition: all ease 0.1s;
    transition: all ease 0.1s;
  }
}

.main {
  width: 100%;
  margin: 0 0 50px 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding: 0 10px;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

.main-about-block {
  margin: 0 auto;
  padding-top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 20px;
  position: relative;
}

.main-about-block > a#login-marker-button {
  margin: 10px;
  color: white;
  text-decoration: none;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 1rem;
  position: absolute;
  text-align: center;
  top: 10px;
  left: calc(50% - 20px);
  z-index: 3000;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  font-size: 1.1rem;
  overflow: hidden;
  text-shadow: 0px 0px 5px black;
  background: url("/user-light.png");
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
  background-color: #fdfdfd;
  position: -webkit-sticky;
  position: sticky;
  -webkit-filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.9));
  filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.9));
}

.main-about-block > a#login-marker-button > span {
  display: none;
}

@media (prefers-color-scheme: dark) {
  .main-about-block > a#login-marker-button {
    background: url("/user-dark.png");
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    background-color: #777;
  }
}

.main-about-block > a#login-marker-button:hover, .main-about-block > a#login-marker-button:focus {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  cursor: pointer;
}

@media (prefers-color-scheme: dark) {
  .main-about-block {
    background-color: #222;
  }
}

.main-about-block-section {
  margin: 0 auto;
  max-width: 600px;
}

.main-about-block-section-title {
  text-align: center;
  font-size: 1.4rem;
  padding: 0 20px 20px 20px;
  margin: 30px auto;
  color: #333;
}

@media (prefers-color-scheme: dark) {
  .main-about-block-section-title {
    color: #eee;
  }
}

.main-about-block-section-sub-block {
  border-top: 1px solid #55555511;
  padding: 5px;
}

@media (prefers-color-scheme: dark) {
  .main-about-block-section-sub-block {
    border-top: 1px solid #55555555;
  }
}

.main-about-block-section-sub-block-section {
  margin: 50px 0;
}

.main-about-block-section-sub-block-section-head {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(200px, 2fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
  gap: 20px;
  margin-bottom: 20px;
}

.main-about-block-section-sub-block-section-head-title {
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.2rem;
  padding: 20px;
  color: #444;
}

@media (prefers-color-scheme: dark) {
  .main-about-block-section-sub-block-section-head-title {
    color: #eee;
  }
}

.main-about-block-section-sub-block-section-head-frame {
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  padding: 10px;
}

.main-about-block-section-sub-block-section-head-frame-image {
  margin: 10px;
  height: 100%;
  -webkit-filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.9));
  filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.9));
}

.main-about-block-section-sub-block-section-content {
  padding: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #33333311;
  color: #444;
}

@media (prefers-color-scheme: dark) {
  .main-about-block-section-sub-block-section-content {
    color: #eee;
    border-bottom: 1px solid #55555555;
  }
}

.main-about-block-section-sub-block-section-content-paragraph {
  margin-bottom: 20px;
  text-align: center;
}

.main-linkSelector {
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px;
  margin-top: 100px;
}

.main-linkSelector-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 300px;
  margin: 0 auto;
  gap: 10px;
  width: 100%;
}

.main-linkSelector-container-link {
  text-align: center;
  background-color: white;
  display: block;
  margin: 0 1px;
  padding: 5px 0;
  border-radius: 0.3rem;
  color: black;
  font-weight: 100;
  text-decoration: none;
  font-size: 0.8rem;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  border: 1px solid #eee;
  width: calc(100% / 3);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.main-linkSelector-container-link:hover, .main-linkSelector-container-link:focus {
  border: 1px solid  #393939;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  outline: none;
}

.main-linkSelector-container-link.active {
  background-color: #393939;
  color: white;
  font-weight: bold;
}

@media (prefers-color-scheme: dark) {
  .main-linkSelector-container-link {
    color: #eeeeee55;
    border-color: #eeeeee11;
    background-color: transparent;
  }
  .main-linkSelector-container-link:hover, .main-linkSelector-container-link:focus {
    border-color: #eeeeee;
  }
  .main-linkSelector-container-link.active {
    background-color: #555;
    color: white;
    border-color: #eeeeee;
  }
}

.main-linkSelector-connector-login {
  width: 100%;
  height: 100%;
}

.main-linkSelector-connector-login-top {
  height: 50%;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-linkSelector-connector-login-top > span {
  height: 100%;
  display: block;
  width: 100%;
  margin: 2px 0;
}

.main-linkSelector-connector-login-top > span:nth-child(1) {
  border-left: 2px solid #393939;
  border-bottom: 2px solid #393939;
  border-radius: 0 0 0 0.5rem;
}

@media (prefers-color-scheme: dark) {
  .main-linkSelector-connector-login-top > span:nth-child(1) {
    border-left: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
  }
}

.main-linkSelector-connector-login-down {
  height: 50%;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-linkSelector-connector-login-down > span {
  height: 100%;
  display: inline-block;
  width: 100%;
}

.main-linkSelector-connector-login-down > span:nth-child(2) {
  border-top: 2px solid #393939;
  border-right: 2px solid #393939;
  border-radius: 0 0.5rem 0 0;
}

@media (prefers-color-scheme: dark) {
  .main-linkSelector-connector-login-down > span:nth-child(2) {
    border-top: 2px solid #ddd;
    border-right: 2px solid #ddd;
  }
}

.main-linkSelector-connector-register {
  width: 100%;
  height: 100%;
}

.main-linkSelector-connector-register-top {
  height: 50%;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-linkSelector-connector-register-top > span {
  height: 100%;
  display: inline-block;
  width: 100%;
  margin: 2px 0;
}

.main-linkSelector-connector-register-top > span:nth-child(2) {
  border-right: 1px solid #393939;
}

.main-linkSelector-connector-register-top > span:nth-child(3) {
  border-left: 1px solid #393939;
}

@media (prefers-color-scheme: dark) {
  .main-linkSelector-connector-register-top > span:nth-child(2) {
    border-right: 1px solid #ddd;
  }
  .main-linkSelector-connector-register-top > span:nth-child(3) {
    border-left: 1px solid #ddd;
  }
}

.main-linkSelector-connector-register-down {
  height: 50%;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-linkSelector-connector-register-down > span {
  height: 100%;
  display: inline-block;
  width: 100%;
}

.main-linkSelector-connector-register-down > span:nth-child(2) {
  border-right: 1px solid #393939;
}

.main-linkSelector-connector-register-down > span:nth-child(3) {
  border-left: 1px solid #393939;
}

@media (prefers-color-scheme: dark) {
  .main-linkSelector-connector-register-down > span:nth-child(2) {
    border-right: 1px solid #ddd;
  }
  .main-linkSelector-connector-register-down > span:nth-child(3) {
    border-left: 1px solid #ddd;
  }
}

.main-linkSelector-connector-forgot {
  width: 100%;
  height: 100%;
}

.main-linkSelector-connector-forgot-top {
  height: 50%;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-linkSelector-connector-forgot-top > span {
  height: 100%;
  display: inline-block;
  width: 100%;
  margin: 2px 0;
}

.main-linkSelector-connector-forgot-top > span:nth-child(4) {
  border-right: 2px solid #393939;
  border-bottom: 2px solid #393939;
  border-radius: 0 0 0.5rem 0;
}

@media (prefers-color-scheme: dark) {
  .main-linkSelector-connector-forgot-top > span:nth-child(4) {
    border-right: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
  }
}

.main-linkSelector-connector-forgot-down {
  height: 50%;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-linkSelector-connector-forgot-down > span {
  height: 100%;
  display: inline-block;
  width: 100%;
}

.main-linkSelector-connector-forgot-down > span:nth-child(3) {
  border-top: 2px solid #393939;
  border-left: 2px solid #393939;
  border-radius: 0.5rem 0 0 0;
}

@media (prefers-color-scheme: dark) {
  .main-linkSelector-connector-forgot-down > span:nth-child(3) {
    border-top: 2px solid #ddd;
    border-left: 2px solid #ddd;
  }
}

.main form#captcha-form {
  margin-top: 100px;
}

.main-form {
  max-width: 350px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.main-form-fieldset {
  padding: 20px;
  border-radius: 0.3rem;
  border: 1px solid #393939;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #eeeeee88;
  -webkit-box-shadow: 0 0 3px 1px gray;
          box-shadow: 0 0 3px 1px gray;
}

@media (prefers-color-scheme: dark) {
  .main-form-fieldset {
    border: 1px solid #eeeeee11;
    -webkit-box-shadow: 0 0 3px 1px black;
            box-shadow: 0 0 3px 1px black;
    background-color: #555;
  }
}

.main-form-fieldset-legend {
  width: 70%;
  text-align: center;
  margin: 0 auto 20px auto;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  border: 2px solid #393939;
  border-radius: 0.5rem;
  color: #fff;
  background-color: #000;
}

@media (prefers-color-scheme: dark) {
  .main-form-fieldset-legend {
    background-color: white;
    color: #333;
    border: 2px solid #ffffff;
  }
}

.main-form-fieldset-invalid-captcha {
  padding: 10px;
  margin: 0 auto 10px auto;
  color: orangered;
}

.main-form-fieldset-message {
  margin: 10px auto 10px auto;
  padding: 10px;
  word-wrap: break-word;
  border-radius: 0.3rem;
  color: black;
  font-size: 0.9rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media (prefers-color-scheme: dark) {
  .main-form-fieldset-message {
    color: white;
  }
}

.main-form-fieldset-captcha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-form-fieldset-captcha > img {
  border-radius: 0.5rem;
  width: calc(100% / 1.5);
  height: calc(100% / 1.5);
}

.main-form-fieldset-label {
  width: 100%;
  height: 40px;
  margin: 5px 0;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.main-form-fieldset-label-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60%;
  margin: auto 5px auto 0;
}

.main-form-fieldset-label-input {
  width: 100%;
  height: 40px;
  padding: 5px 10px;
  border-radius: 0.3rem;
  border: 1px solid #aaa;
  outline: none;
  font-size: 1.1rem;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.main-form-fieldset-label-input:focus {
  -webkit-box-shadow: inset 0 0 1px 2px #393939;
          box-shadow: inset 0 0 1px 2px #393939;
}

@media (prefers-color-scheme: dark) {
  .main-form-fieldset-label-input {
    background-color: #333;
    color: white;
  }
}

@media (prefers-color-scheme: dark) {
  .main-form-fieldset-label input[name="email"] {
    background: url("/user-dark.png");
    background-repeat: no-repeat;
    background-size: 5%;
    background-position: 8px;
    padding: 0 10px 0 35px;
    letter-spacing: 0.125em;
    font-size: 16px;
    background-color: #333;
    color: white;
  }
  .main-form-fieldset-label input[name="captcha"] {
    width: 60px;
    margin: 0 auto;
    text-align: center;
  }
  .main-form-fieldset-label input[name="captcha"]::placeholder,
  .main-form-fieldset-label input[name="captcha"]::-moz-placeholder {
    text-align: center;
  }
  .main-form-fieldset-label input[name="password"],
  .main-form-fieldset-label input[name="repeat"] {
    background: url("/key-dark.png");
    background-repeat: no-repeat;
    background-size: 5%;
    background-position: 8px;
    padding: 0 40px 0 35px;
    letter-spacing: 0.125em;
    color: white;
    background-color: #333;
    font-size: 16px;
  }
}

@media (prefers-color-scheme: light) {
  .main-form-fieldset-label input[name="email"] {
    background: url("/user-light.png");
    background-repeat: no-repeat;
    background-size: 5%;
    background-position: 8px;
    padding: 0 10px 0 35px;
    letter-spacing: 0.125em;
    font-size: 16px;
    color: black;
    background-color: white;
  }
  .main-form-fieldset-label input[name="captcha"] {
    width: 60px;
    margin: 0 auto;
    text-align: center;
  }
  .main-form-fieldset-label input[name="captcha"]::placeholder,
  .main-form-fieldset-label input[name="captcha"]::-moz-placeholder {
    text-align: center;
  }
  .main-form-fieldset-label input[name="password"],
  .main-form-fieldset-label input[name="repeat"] {
    background: url("/key-light.png");
    background-repeat: no-repeat;
    background-size: 5%;
    background-position: 8px;
    padding: 0 40px 0 35px;
    letter-spacing: 0.125em;
    font-size: 16px;
    color: black;
    background-color: white;
  }
}

.main-form-fieldset label#agreement {
  font-size: 0.7rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: inline;
  margin: 10px auto;
}

.main-form-fieldset label#agreement > * {
  text-decoration: none;
  font-size: 0.7rem;
}

.main-form-fieldset label#agreement > a {
  color: #008200;
}

@media (prefers-color-scheme: dark) {
  .main-form-fieldset label#agreement > a {
    color: #00f300;
  }
}

.main-form-fieldset label#agreement input[type="checkbox"] {
  width: 15px;
  height: 15px;
}

.main-form-fieldset-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  border-radius: 0.3rem;
  border: 1px solid transparent;
  outline: none;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  margin-left: auto;
  margin-top: 50px;
  border: 2px solid #6bb800;
  background-color: #5ea100;
  color: white;
  font-weight: bold;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.main-form-fieldset-button:hover, .main-form-fieldset-button:focus {
  background-color: #6bb800;
  border: 2px solid #5ea100;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  color: #fff;
  cursor: pointer;
}

.main-404container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-404container-box {
  width: 200px;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-404container-box-logo {
  width: 100%;
  height: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-404container-box-logo-image {
  font-size: 5rem;
  margin: 0 auto;
  text-shadow: 0px 0px 2px #888;
  color: #393939;
  -webkit-filter: grayscale(100);
          filter: grayscale(100);
}

@media (prefers-color-scheme: dark) {
  .main-404container-box-logo-image {
    color: #eee;
  }
}

.main-404container-box-message {
  height: 50%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px auto;
}

.main-404container-box-back {
  text-align: center;
  background-color: #393939;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 1px;
  padding: 5px 20px;
  border-radius: 0.5rem;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  z-index: 3001;
}

.main-404container-box-back:hover, .main-404container-box-back:focus {
  background-color: #bbb;
  color: #393939;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  outline: none;
}

@media (prefers-color-scheme: dark) {
  .main-404container-box-back {
    background-color: #999;
    color: black;
  }
  .main-404container-box-back:hover, .main-404container-box-back:focus {
    background-color: #bbb;
    color: black;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    outline: none;
  }
}

.main-activation {
  width: 100%;
  height: 200px;
}

.main-activation-container {
  width: 300px;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-activation-container-message {
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.main-activation-container-message.error {
  color: orangered;
}

.main-activation-container-message.successful {
  color: #2bea7d;
}

.main-activation-container-link {
  text-align: center;
  background-color: #393939;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 1px;
  padding: 5px 20px;
  border-radius: 0.5rem;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.main-activation-container-link:hover, .main-activation-container-link:focus {
  background-color: #bbb;
  color: #393939;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  outline: none;
}

.main-home {
  width: 100%;
  height: 100%;
  position: relative;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}

.main-home-header {
  width: 100%;
  min-height: 50px;
  border-top: 1px solid #eeeeeeee;
  background-color: #aaa;
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (prefers-color-scheme: dark) {
  .main-home-header {
    border-top: 1px solid #666666ee;
    background-color: #222;
  }
}

.main-home-header-title {
  color: #333;
  font-weight: bold;
  text-align: center;
  margin: auto;
}

@media (prefers-color-scheme: dark) {
  .main-home-header-title {
    color: #eee;
  }
}

.main-home-content {
  max-width: 800px;
  height: 100%;
  margin: 30px auto 0 auto;
  width: 100%;
  font-size: 10px !important;
  padding: 0 10px;
}

.main-home-content-row-3 {
  background-color: #ff72c211;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 0 0 1rem 0;
  border-right: 1px solid rgba(208, 208, 208, 0.316);
  border-left: 1px solid rgba(208, 208, 208, 0.316);
  border-bottom: 1px solid rgba(208, 208, 208, 0.316);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
  max-width: 600px;
  word-wrap: break-word;
}

.main-home-content-row-3 > p:nth-child(1) {
  margin-bottom: 10px;
  padding: 10px;
  color: #640039;
  font-weight: bold;
  background-color: rgba(208, 208, 208, 0.316);
}

@media (prefers-color-scheme: dark) {
  .main-home-content-row-3 > p:nth-child(1) {
    color: #ffcae8;
  }
}

.main-home-content-row-4 {
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 0;
  border: 1px solid #eeeeee;
  margin: 0 auto;
  text-align: center;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(240px, 2fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(240px, 2fr));
  max-width: 600px;
  gap: 1px;
}

@media (prefers-color-scheme: dark) {
  .main-home-content-row-4 {
    border: 1px solid #535353;
  }
}

.main-home-content-row-4-row-1 {
  min-width: 240px;
  background-color: #eaff7211;
  word-wrap: break-word;
}

.main-home-content-row-4-row-1 > p:nth-child(1) {
  margin-bottom: 20px;
  padding: 10px;
  color: #404b00;
  font-weight: bold;
  background-color: #eee;
}

@media (prefers-color-scheme: dark) {
  .main-home-content-row-4-row-1 > p:nth-child(1) {
    background-color: rgba(32, 32, 32, 0.767);
  }
}

@media (prefers-color-scheme: dark) {
  .main-home-content-row-4-row-1 > p:nth-child(1) {
    color: #f5ffbe;
  }
}

.main-home-content-row-4-row-1 > p:nth-child(2) {
  width: 235px;
  max-width: 235px;
  word-break: break-all;
  margin: 0 auto;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.main-home-content-row-4-row-1 > form > button {
  margin: 40px 10px 20px 10px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 0.3rem;
  border: none;
  background-color: rgba(87, 162, 7, 0.241);
  color: #00510b;
  font-weight: bold;
  -webkit-transition: background-color ease 0.2s;
  transition: background-color ease 0.2s;
}

.main-home-content-row-4-row-1 > form > button:hover, .main-home-content-row-4-row-1 > form > button:focus {
  -webkit-transition: background-color ease 0.2s;
  transition: background-color ease 0.2s;
  background-color: #b1e27c;
  color: #1e4b00;
}

@media (prefers-color-scheme: dark) {
  .main-home-content-row-4-row-1 > form > button {
    background-color: rgba(87, 162, 7, 0.241);
    color: #d3ffd9;
  }
  .main-home-content-row-4-row-1 > form > button:hover, .main-home-content-row-4-row-1 > form > button:focus {
    -webkit-transition: background-color ease 0.2s;
    transition: background-color ease 0.2s;
    background-color: #b1e27c;
    color: #1e4b00;
  }
}

.main-home-content-row-4-row-2 {
  min-width: 240px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(100%, 2fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(100%, 2fr));
}

.main-home-content-row-4-row-2-row-1 {
  width: 100%;
  background-color: #ffbb7211;
}

.main-home-content-row-4-row-2-row-1 > p:nth-child(1) {
  margin-bottom: 20px;
  padding: 10px;
  color: #753c00;
  font-weight: bold;
  background-color: #eee;
}

@media (prefers-color-scheme: dark) {
  .main-home-content-row-4-row-2-row-1 > p:nth-child(1) {
    background-color: rgba(32, 32, 32, 0.767);
    color: #ffddb8;
  }
}

.main-home-content-row-4-row-2-row-1 > p:nth-child(2) {
  width: 160px;
  max-width: 160px;
  word-break: break-all;
  margin: 0 auto 50px auto;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.main-home-content-row-4-row-2-row-2 {
  width: 100%;
  background-color: #de72ff11;
}

.main-home-content-row-4-row-2-row-2 > p:nth-child(1) {
  margin-bottom: 20px;
  padding: 10px;
  color: #5e007b;
  font-weight: bold;
  background-color: #eee;
}

@media (prefers-color-scheme: dark) {
  .main-home-content-row-4-row-2-row-2 > p:nth-child(1) {
    background-color: rgba(32, 32, 32, 0.767);
    color: #f3caff;
  }
}

.main-home-content-row-4-row-2-row-2 > p:nth-child(2) {
  width: 160px;
  max-width: 160px;
  word-break: break-all;
  margin: 0 auto 50px auto;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.main-profile {
  width: 100%;
  position: relative;
  padding: 10px;
}

.main-profile-content {
  max-width: 800px;
  margin: 30px auto 0 auto;
  font-size: 10px !important;
  background-color: #e1e1e1;
  border-radius: 0.3rem;
  border: 1px solid #eeeeee;
}

@media (prefers-color-scheme: dark) {
  .main-profile-content {
    background-color: #555;
    border: none;
    border: 1px solid #535353;
  }
}

.main-profile-content-section-1 {
  height: 100%;
  width: 100%;
  gap: 5px;
}

.main-profile-content-section-1-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 5px 5px 0 0;
  background-color: #eee;
}

@media (prefers-color-scheme: dark) {
  .main-profile-content-section-1-header {
    border-radius: 5px 5px 0 0;
    background-color: rgba(32, 32, 32, 0.767);
  }
}

.main-profile-content-section-1-header-item {
  display: inline-block;
  border-radius: 0.3rem;
  padding: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: bold;
  color: #333;
}

@media (prefers-color-scheme: dark) {
  .main-profile-content-section-1-header-item {
    color: #eee;
  }
}

.main-profile-content-section-1-main {
  width: 100%;
  height: 100%;
  padding: 10px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(215px, 2fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(215px, 2fr));
  gap: 10px;
}

.main-profile-content-section-1-main-avatar {
  width: 100%;
  min-width: 90px;
  border-radius: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.3rem;
}

.main-profile-content-section-1-main-avatar-frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  min-height: 100px;
}

.main-profile-content-section-1-main-avatar-frame-image {
  width: 100%;
  height: calc(100% - 20px);
  margin: auto;
  background: url("/default-light.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media (prefers-color-scheme: dark) {
  .main-profile-content-section-1-main-avatar-frame-image {
    width: 100%;
    height: calc(100% - 20px);
    margin: auto;
    background: url("/default-dark.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
}

.main-profile-content-section-1-main-infos {
  border-radius: 0.3rem;
  width: 100%;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  background-color: #eee;
}

.main-profile-content-section-1-main-infos-label {
  color: #0b0054;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-profile-content-section-1-main-infos-value {
  color: #000;
  word-break: break-word;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

@media (prefers-color-scheme: dark) {
  .main-profile-content-section-1-main-infos {
    background-color: rgba(32, 32, 32, 0.767);
  }
  .main-profile-content-section-1-main-infos-label {
    color: #9d9d9d;
    vertical-align: middle;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-profile-content-section-1-main-infos-value {
    color: #f0f0f0;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
  }
}

.main-profile-content-section-1-footer {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(215px, 2fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(215px, 2fr));
  gap: 10px;
  border-radius: 0.3rem;
}

.main-profile-content-section-1-footer-change {
  width: 100%;
  height: 100%;
  padding: 5px;
  border-radius: 0.3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(215px, 3fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(215px, 3fr));
  gap: 5px;
  background-color: #eee;
}

.main-profile-content-section-1-footer-change label {
  width: 100%;
  display: block;
  margin-bottom: 5px;
  padding: 3px;
  position: relative;
  color: #0b0054;
}

@media (prefers-color-scheme: dark) {
  .main-profile-content-section-1-footer-change {
    color: #cecece;
    background-color: rgba(32, 32, 32, 0.767);
  }
  .main-profile-content-section-1-footer-change label {
    color: #e5e5e5;
  }
}

.main-profile-content-section-1-footer-change input {
  margin-top: 2px;
  width: 100%;
  padding: 5px;
  border-radius: 0.2rem;
  border: 1px solid rgba(0, 0, 0, 0.285);
  background-color: #fff;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

@media (prefers-color-scheme: dark) {
  .main-profile-content-section-1-footer-change input {
    background-color: #000;
  }
}

.main-profile-content-section-1-footer-change input:before, .main-profile-content-section-1-footer-change input:after {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.main-profile-content-section-1-footer-change button {
  margin: 20px 0 10px auto;
  display: block;
  padding: 5px 10px;
  background-color: #2e2e2e;
  border-radius: 0.2rem;
  border: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #e4e4e4;
  font-size: 0.8rem;
}

.main-profile-content-section-1-footer-change button:hover, .main-profile-content-section-1-footer-change button:focus {
  background-color: #6fee00;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #224d00;
}

@media (prefers-color-scheme: dark) {
  .main-profile-content-section-1-footer-change button {
    background-color: #212121;
    border: 1px solid black;
    color: white;
  }
  .main-profile-content-section-1-footer-change button:hover, .main-profile-content-section-1-footer-change button:focus {
    background-color: #6fee00;
    color: #292929;
  }
}

.main-profile-content-section-1-footer-remove {
  width: 100%;
  height: 100%;
  border-radius: 0.3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  background-color: #eee;
}

@media (prefers-color-scheme: dark) {
  .main-profile-content-section-1-footer-remove {
    color: #eee;
    background-color: rgba(32, 32, 32, 0.767);
  }
}

.main-profile-content-section-1-footer-remove p {
  padding: 10px;
  margin-bottom: 30px;
  text-align: center;
}

.main-profile-content-section-1-footer-remove div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.main-profile-content-section-1-footer-remove div > button {
  margin: 0;
  width: 50px;
}

.main-profile-content-section-1-footer-remove div button:nth-child(1) {
  background-color: #5e9c00;
}

.main-profile-content-section-1-footer-remove div button:nth-child(2) {
  background-color: #da0000;
}

.main-profile-content-section-1-footer-remove button {
  background-color: #2e2e2e;
  border: none;
  border-radius: 0.3rem;
  padding: 10px;
  margin: auto;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: white;
  font-size: 0.8rem;
}

.main-profile-content-section-1-footer-remove button:hover, .main-profile-content-section-1-footer-remove button:focus {
  background-color: #ff0000;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (prefers-color-scheme: dark) {
  .main-profile-content-section-1-footer-remove button {
    color: #ffffff;
    background-color: #222;
    border: 1px solid black;
  }
}

.main-profile-content-section-1-row-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  max-width: 600px;
  height: 50px;
  width: fit-content;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0 0 3px 1px black;
          box-shadow: 0 0 3px 1px black;
}

.main-profile-content-section-1-row-1 > p {
  margin: 0 10px;
  height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.2rem;
}

.main-profile-content-section-1-row-1 > p:nth-child(1) {
  text-align: right;
}

.main-profile-content-section-1-row-1 > p:nth-child(2) {
  text-align: left;
}

.main-profile-content-section-1-row-2 {
  background-color: #72eaff11;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 0 0 1rem 0;
  border-right: 1px solid rgba(208, 208, 208, 0.316);
  border-left: 1px solid rgba(208, 208, 208, 0.316);
  border-bottom: 1px solid rgba(208, 208, 208, 0.316);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
  max-width: 600px;
  word-wrap: break-word;
}

.main-profile-content-section-1-row-2 > p:nth-child(1) {
  margin-bottom: 10px;
  padding: 10px;
  color: #046f82;
  font-weight: bold;
  background-color: rgba(208, 208, 208, 0.316);
}

@media (prefers-color-scheme: dark) {
  .main-profile-content-section-1-row-2 > p:nth-child(1) {
    color: #c6f6ff;
  }
}

.main-profile-content-section-1-row-3 {
  background-color: #ff72c211;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 0 0 1rem 0;
  border-right: 1px solid rgba(208, 208, 208, 0.316);
  border-left: 1px solid rgba(208, 208, 208, 0.316);
  border-bottom: 1px solid rgba(208, 208, 208, 0.316);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
  max-width: 600px;
  word-wrap: break-word;
}

.main-profile-content-section-1-row-3 > p:nth-child(1) {
  margin-bottom: 10px;
  padding: 10px;
  color: #640039;
  font-weight: bold;
  background-color: rgba(208, 208, 208, 0.316);
}

@media (prefers-color-scheme: dark) {
  .main-profile-content-section-1-row-3 > p:nth-child(1) {
    color: #ffcae8;
  }
}

.main-board {
  width: 100%;
  height: 100%;
  padding: 10px 10px 0 10px;
}

.main-board-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 800px;
  margin: 20px auto 0 auto;
}

@media (orientation: portrait) {
  .main-board-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-board-content-section-1 {
    margin: 0 auto;
  }
  .main-board-content-section-1-panel {
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(120px, 2fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(120px, 2fr));
    max-width: 450px;
    gap: 20px;
  }
  .main-board-content-section-1-panel-message {
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #eee;
    color: #000;
    position: relative;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .main-board-content-section-1-panel-message > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .main-board-content-section-1-panel-message > div > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-right: 5px;
    font-size: 0.8rem;
  }
  .main-board-content-section-1-panel-message > div > p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    vertical-align: middle;
    font-size: 0.8rem;
  }
  .main-board-content-section-1-panel-xfen {
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #eee;
    color: #000;
    position: relative;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .main-board-content-section-1-panel-xfen > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 0.8rem;
  }
  .main-board-content-section-1-panel-xfen > p {
    display: inline;
    vertical-align: middle;
    font-size: 0.7rem;
    word-break: break-all;
  }
  .main-board-content-section-1-panel #response-error {
    word-wrap: break-word;
    color: red;
  }
  .main-board-content-section-1-panel #game-status {
    word-wrap: break-word;
    color: #007522;
  }
}

@media (orientation: portrait) and (prefers-color-scheme: dark) {
  .main-board-content-section-1-panel-message {
    background-color: #000;
    color: #eee;
  }
  .main-board-content-section-1-panel #response-error {
    word-wrap: break-word;
    color: red;
  }
  .main-board-content-section-1-panel #game-status {
    word-wrap: break-word;
    color: #00b533;
  }
}

@media (orientation: portrait) and (prefers-color-scheme: dark) {
  .main-board-content-section-1-panel-message {
    background-color: #000;
    color: #eee;
    font-size: 0.7rem !important;
  }
  .main-board-content-section-1-panel #game-status {
    word-wrap: break-word;
    color: white;
    padding: 3px;
  }
  .main-board-content-section-1-panel-xfen {
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #000;
    color: #eee;
    position: relative;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .main-board-content-section-1-panel-xfen > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 0.8rem;
  }
  .main-board-content-section-1-panel-xfen > p {
    display: inline;
    vertical-align: middle;
    font-size: 0.7rem;
    word-break: break-all;
  }
}

@media (orientation: portrait) {
  .main-board-content-section-1-panel-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
    max-width: 600px;
    padding: 10px 10px 0 10px;
  }
  .main-board-content-section-1-panel-buttons-label {
    text-align: right;
    margin-bottom: 2px;
    font-size: 0.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    gap: 3px;
  }
  .main-board-content-section-1-panel-buttons-label > span {
    font-size: 0.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-board-content-section-1-panel-buttons-label-select {
    padding: 10px;
    height: 40px;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    background-color: #eee;
    color: #333;
    border-radius: 5px;
    border: none;
    width: 170px;
    font-size: 0.8rem;
    font-family: monospace,Courier monospace,serif;
  }
  .main-board-content-section-1-panel-buttons-label-select > option {
    font-family: monospace,Courier monospace,serif;
  }
  .main-board-content-section-1-panel-buttons-label-input {
    width: 100px;
    height: 40px;
    padding: 5px;
    border-radius: 5px;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    border: none;
    background-color: #eee;
    color: #333;
    font-size: 0.8rem;
    font-family: monospace,Courier monospace,serif;
  }
  .main-board-content-section-1-panel-buttons-label-input > option {
    font-family: monospace,Courier monospace,serif;
  }
}

@media (orientation: portrait) and (prefers-color-scheme: dark) {
  .main-board-content-section-1-panel-buttons-label-input {
    background-color: black;
    color: #eee;
  }
  .main-board-content-section-1-panel-buttons-label-select {
    background-color: black;
    color: #eee;
  }
}

@media (orientation: portrait) {
  .main-board-content-section-1-panel-buttons-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  .main-board-content-section-1-panel-buttons-box-reset {
    width: 80px;
    padding: 10px;
    background-color: #bd0000;
    color: white;
    border: none;
    border-radius: 3px;
    font-weight: bold;
  }
  .main-board-content-section-1-panel-buttons-box-reset:hover, .main-board-content-section-1-panel-buttons-box-reset:focus {
    cursor: pointer;
    background-color: red;
  }
  .main-board-content-section-1-panel-buttons-box > p {
    width: 50%;
    height: 50px;
  }
  .main-board-content-section-1-panel-buttons-box-run {
    width: 80px;
    padding: 10px 20px;
    background-color: #2b2b2b;
    color: white;
    border: none;
    border-radius: 3px;
    font-weight: bold;
  }
  .main-board-content-section-1-panel-buttons-box-run:hover, .main-board-content-section-1-panel-buttons-box-run:focus {
    cursor: pointer;
    background-color: rgba(43, 43, 43, 0.591);
  }
}

@media (orientation: portrait) and (prefers-color-scheme: dark) {
  .main-board-content-section-1-panel-buttons-box-run {
    background-color: #5e5e5e;
    color: white;
  }
  .main-board-content-section-1-panel-buttons-box-run:hover, .main-board-content-section-1-panel-buttons-box-run:focus {
    cursor: pointer;
    background-color: #777777;
  }
}

@media (orientation: portrait) {
  .main-board-content-section-2 {
    margin: 20px auto;
    max-width: 600px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    z-index: 2000;
    width: 100%;
  }
  .main-board-content-section-2 #chess-frame {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 100%;
    width: 100%;
    margin: 0 auto;
  }
  .main-board-content-section-2 #chess-frame #chess-board {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
    position: relative;
    z-index: 2000;
  }
  .main-board-content-section-2 #chess-frame #chess-board tr:nth-child(even) td:nth-child(odd) {
    background-color: #dddddd;
    width: calc(100% / 10);
    height: calc(100% / 10);
  }
}

@media (orientation: portrait) and (prefers-color-scheme: dark) {
  .main-board-content-section-2 #chess-frame #chess-board tr:nth-child(even) td:nth-child(odd) {
    background-color: #777777;
  }
}

@media (orientation: portrait) {
  .main-board-content-section-2 #chess-frame #chess-board tr:nth-child(odd) td:nth-child(even) {
    background-color: #dddddd;
    width: calc(100% / 10);
    height: calc(100% / 10);
  }
}

@media (orientation: portrait) and (prefers-color-scheme: dark) {
  .main-board-content-section-2 #chess-frame #chess-board tr:nth-child(odd) td:nth-child(even) {
    background-color: #777777;
  }
}

@media (orientation: portrait) {
  .main-board-content-section-2 #chess-frame #chess-board tr:nth-child(even) td:nth-child(even) {
    background-color: #eeeeee;
    width: calc(100% / 10);
    height: calc(100% / 10);
  }
}

@media (orientation: portrait) and (prefers-color-scheme: dark) {
  .main-board-content-section-2 #chess-frame #chess-board tr:nth-child(even) td:nth-child(even) {
    background-color: #999999;
  }
}

@media (orientation: portrait) {
  .main-board-content-section-2 #chess-frame #chess-board tr:nth-child(odd) td:nth-child(odd) {
    background-color: #eeeeee;
    width: calc(100% / 10);
    height: calc(100% / 10);
  }
}

@media (orientation: portrait) and (prefers-color-scheme: dark) {
  .main-board-content-section-2 #chess-frame #chess-board tr:nth-child(odd) td:nth-child(odd) {
    background-color: #999999;
  }
}

@media (orientation: portrait) {
  .main-board-content-section-2 #chess-frame #chess-board #empty-column {
    background-color: transparent;
    border-color: transparent;
    text-align: center;
    font-size: 0.8rem;
    color: #bbb;
  }
  .main-board-content-section-2 #chess-frame #chess-board #empty-column.rank-file-two-player.one {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .main-board-content-section-2 #chess-frame #chess-board #empty-column.rank-file-two-player.two {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@media (orientation: portrait) and (prefers-color-scheme: dark) {
  .main-board-content-section-2 #chess-frame #chess-board #empty-column {
    color: #7d7d7d;
  }
  .main-board-content-section-2 #chess-frame #chess-board #empty-column.rank-file-two-player.one {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .main-board-content-section-2 #chess-frame #chess-board #empty-column.rank-file-two-player.two {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@media (orientation: portrait) {
  .main-board-content-section-2 #chess-frame #chess-board tr {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .main-board-content-section-2 #chess-frame #chess-board tr > td {
    width: calc(100% / 10);
    height: calc(100% / 10);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none !important;
  }
  .main-board-content-section-2 #chess-frame #chess-board tr > td > div {
    text-align: center;
    width: calc(100%);
    height: calc(100%);
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 2px solid transparent;
  }
  .main-board-content-section-2 #chess-frame #chess-board tr > td > div > canvas {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: auto;
    width: 100%;
    height: 100%;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.3rem;
    -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.6));
    filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.6));
  }
  .main-board-content-section-2 #chess-frame #chess-board tr > td > div > canvas.two {
    -webkit-transform: rotateX(180deg) !important;
            transform: rotateX(180deg) !important;
  }
}

@media (orientation: landscape) {
  .main-board-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .main-board-content-section-1 {
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .main-board-content-section-1-panel {
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(200px, 2fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
    max-width: 400px;
    gap: 20px;
    gap: 2px;
  }
  .main-board-content-section-1-panel-message {
    border-radius: 5px;
    height: 80px;
    background-color: #eee;
    color: #000;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(200px, 2fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
    vertical-align: middle;
    position: relative;
  }
  .main-board-content-section-1-panel-message > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 10px;
  }
  .main-board-content-section-1-panel-message > div > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-right: 5px;
    font-size: 0.8rem;
  }
  .main-board-content-section-1-panel-message > div > p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    vertical-align: middle;
    font-size: 0.8rem;
  }
  .main-board-content-section-1-panel-xfen {
    max-width: 400px;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #eee;
    color: #000;
    position: relative;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .main-board-content-section-1-panel-xfen > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 0.8rem;
  }
  .main-board-content-section-1-panel-xfen > p {
    display: inline;
    vertical-align: middle;
    font-size: 0.7rem;
    word-break: break-all;
  }
  .main-board-content-section-1-panel #response-error {
    word-wrap: break-word;
    color: red;
  }
  .main-board-content-section-1-panel #game-status {
    word-wrap: break-word;
    color: #007522;
  }
}

@media (orientation: landscape) and (prefers-color-scheme: dark) {
  .main-board-content-section-1-panel-message {
    background-color: #000;
    color: #eee;
  }
  .main-board-content-section-1-panel #response-error {
    word-wrap: break-word;
    color: red;
  }
  .main-board-content-section-1-panel #game-status {
    word-wrap: break-word;
    color: #00b533;
  }
  .main-board-content-section-1-panel-xfen {
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #000;
    color: #eee;
    position: relative;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 100%;
  }
  .main-board-content-section-1-panel-xfen > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 0.8rem;
  }
  .main-board-content-section-1-panel-xfen > p {
    display: inline;
    vertical-align: middle;
    font-size: 0.7rem;
    word-break: break-all;
  }
}

@media (orientation: landscape) {
  .main-board-content-section-1-panel-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
    max-width: 600px;
    padding: 10px;
  }
  .main-board-content-section-1-panel-buttons-label {
    text-align: right;
    margin-bottom: 2px;
    font-size: 0.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    gap: 3px;
  }
  .main-board-content-section-1-panel-buttons-label > span {
    font-size: 0.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-board-content-section-1-panel-buttons-label-select {
    padding: 10px;
    height: 40px;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    background-color: #eee;
    color: #333;
    border-radius: 5px;
    border: none;
    width: 170px;
    font-size: 0.8rem;
    font-family: monospace,Courier monospace,serif;
  }
  .main-board-content-section-1-panel-buttons-label-select > option {
    font-family: monospace,Courier monospace,serif;
  }
  .main-board-content-section-1-panel-buttons-label-input {
    width: 100px;
    height: 40px;
    padding: 5px;
    border-radius: 5px;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    border: none;
    background-color: #eee;
    color: #333;
    font-size: 0.8rem;
    font-family: monospace,Courier monospace,serif;
  }
  .main-board-content-section-1-panel-buttons-label-input > option {
    font-family: monospace,Courier monospace,serif;
  }
}

@media (orientation: landscape) and (prefers-color-scheme: dark) {
  .main-board-content-section-1-panel-buttons-label-input {
    background-color: black;
    color: #eee;
  }
  .main-board-content-section-1-panel-buttons-label-select {
    background-color: black;
    color: #eee;
  }
}

@media (orientation: landscape) {
  .main-board-content-section-1-panel-buttons-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  .main-board-content-section-1-panel-buttons-box-reset {
    width: 80px;
    padding: 10px;
    background-color: #bd0000;
    color: white;
    border: none;
    border-radius: 3px;
    font-weight: bold;
  }
  .main-board-content-section-1-panel-buttons-box-reset:hover, .main-board-content-section-1-panel-buttons-box-reset:focus {
    cursor: pointer;
    background-color: red;
  }
  .main-board-content-section-1-panel-buttons-box > p {
    width: 50%;
    height: 50px;
  }
  .main-board-content-section-1-panel-buttons-box-run {
    width: 80px;
    padding: 10px 20px;
    background-color: #2b2b2b;
    color: white;
    border: none;
    border-radius: 3px;
    font-weight: bold;
  }
  .main-board-content-section-1-panel-buttons-box-run:hover, .main-board-content-section-1-panel-buttons-box-run:focus {
    cursor: pointer;
    background-color: rgba(43, 43, 43, 0.591);
  }
}

@media (orientation: landscape) and (prefers-color-scheme: dark) {
  .main-board-content-section-1-panel-buttons-box-run {
    background-color: #5e5e5e;
    color: white;
  }
  .main-board-content-section-1-panel-buttons-box-run:hover, .main-board-content-section-1-panel-buttons-box-run:focus {
    cursor: pointer;
    background-color: #777777;
  }
}

@media (orientation: landscape) {
  .main-board-content-section-2 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: auto;
    max-width: 350px;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
    position: relative;
    z-index: 2000;
  }
}

@media screen and (orientation: landscape) and (max-width: 700px) {
  .main-board-content-section-2 {
    max-width: 300px;
  }
}

@media screen and (orientation: landscape) and (min-width: 700px) {
  .main-board-content-section-2 {
    min-width: 350px;
  }
}

@media (orientation: landscape) {
  .main-board-content-section-2 #chess-frame {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 80%;
    width: 100%;
    margin: 0 auto;
  }
  .main-board-content-section-2 #chess-frame #chess-board {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    height: 80%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    z-index: 2000;
  }
  .main-board-content-section-2 #chess-frame #chess-board tr:nth-child(even) td:nth-child(odd) {
    background-color: #dddddd;
    width: calc(100% / 10);
    height: calc(100% / 10);
  }
}

@media (orientation: landscape) and (prefers-color-scheme: dark) {
  .main-board-content-section-2 #chess-frame #chess-board tr:nth-child(even) td:nth-child(odd) {
    background-color: #777777;
  }
}

@media (orientation: landscape) {
  .main-board-content-section-2 #chess-frame #chess-board tr:nth-child(odd) td:nth-child(even) {
    background-color: #dddddd;
    width: calc(100% / 10);
    height: calc(100% / 10);
  }
}

@media (orientation: landscape) and (prefers-color-scheme: dark) {
  .main-board-content-section-2 #chess-frame #chess-board tr:nth-child(odd) td:nth-child(even) {
    background-color: #777777;
  }
}

@media (orientation: landscape) {
  .main-board-content-section-2 #chess-frame #chess-board tr:nth-child(even) td:nth-child(even) {
    background-color: #eeeeee;
    width: calc(100% / 10);
    height: calc(100% / 10);
  }
}

@media (orientation: landscape) and (prefers-color-scheme: dark) {
  .main-board-content-section-2 #chess-frame #chess-board tr:nth-child(even) td:nth-child(even) {
    background-color: #999999;
  }
}

@media (orientation: landscape) {
  .main-board-content-section-2 #chess-frame #chess-board tr:nth-child(odd) td:nth-child(odd) {
    background-color: #eeeeee;
    width: calc(100% / 10);
    height: calc(100% / 10);
  }
}

@media (orientation: landscape) and (prefers-color-scheme: dark) {
  .main-board-content-section-2 #chess-frame #chess-board tr:nth-child(odd) td:nth-child(odd) {
    background-color: #999999;
  }
}

@media (orientation: landscape) {
  .main-board-content-section-2 #chess-frame #chess-board #empty-column {
    background-color: transparent;
    border-color: transparent;
    text-align: center;
    font-size: 0.8rem;
    color: #bbb;
  }
  .main-board-content-section-2 #chess-frame #chess-board #empty-column.rank-file-two-player.one {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .main-board-content-section-2 #chess-frame #chess-board #empty-column.rank-file-two-player.two {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@media (orientation: landscape) and (prefers-color-scheme: dark) {
  .main-board-content-section-2 #chess-frame #chess-board #empty-column {
    color: #7d7d7d;
  }
  .main-board-content-section-2 #chess-frame #chess-board #empty-column.rank-file-two-player.one {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .main-board-content-section-2 #chess-frame #chess-board #empty-column.rank-file-two-player.two {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@media (orientation: landscape) {
  .main-board-content-section-2 #chess-frame #chess-board tr {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .main-board-content-section-2 #chess-frame #chess-board tr > td {
    width: calc(100% / 10);
    height: calc(100% / 10);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none !important;
  }
  .main-board-content-section-2 #chess-frame #chess-board tr > td > div {
    text-align: center;
    width: calc(100%);
    height: calc(100%);
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 2px solid transparent;
  }
  .main-board-content-section-2 #chess-frame #chess-board tr > td > div > canvas {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: auto;
    width: 100%;
    height: 100%;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.3rem;
    -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.6));
    filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.6));
  }
  .main-board-content-section-2 #chess-frame #chess-board tr > td > div > canvas.two {
    -webkit-transform: rotateX(180deg) !important;
            transform: rotateX(180deg) !important;
  }
}

.main-policies {
  max-width: 800px;
  margin: 0 auto;
}

.main-policies > * {
  font-family: monospace,serif;
}

.main-policies h1, .main-policies h2, .main-policies h3, .main-policies h4, .main-policies h5, .main-policies h6 {
  padding: 10px 0;
  color: #333;
  font-size: 1.2rem;
  font-family: monospace,serif;
  text-align: center;
}

@media (prefers-color-scheme: dark) {
  .main-policies h1, .main-policies h2, .main-policies h3, .main-policies h4, .main-policies h5, .main-policies h6 {
    color: white;
  }
}

.main-policies p {
  color: #555;
  font-size: 0.9rem;
  text-align: justify;
  margin-bottom: 20px;
  text-justify: distribute;
}

@media (prefers-color-scheme: dark) {
  .main-policies p {
    color: #ddd;
  }
}

.main-policies li {
  list-style: none;
}

.main-policies a {
  text-decoration: underline;
  color: black;
  font-weight: bold;
}

@media (prefers-color-scheme: dark) {
  .main-policies a {
    color: white;
  }
}

.main-policies > a:last-of-type {
  text-decoration: none;
  color: black;
  font-weight: lighter;
  font-size: 0.8rem;
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (prefers-color-scheme: dark) {
  .main-policies > a:last-of-type {
    color: white;
  }
}

.main-policies > a:last-of-type:after {
  content: '';
  background: url("/email-light.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 5px;
}

@media (prefers-color-scheme: dark) {
  .main-policies > a:last-of-type:after {
    content: '';
    background: url("/email-dark.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
    width: 20px;
    height: 20px;
    margin-left: 5px;
  }
}

.main-about {
  max-width: 600px;
  margin: 0 auto;
}

.main-about > * {
  font-family: monospace,serif;
}

.main-about h1, .main-about h2, .main-about h3, .main-about h4, .main-about h5, .main-about h6 {
  padding: 10px 0;
  color: #333;
  font-size: 1.2rem;
  font-family: monospace,serif;
  text-align: justify;
  text-justify: distribute;
  margin-bottom: 10px;
}

@media (prefers-color-scheme: dark) {
  .main-about h1, .main-about h2, .main-about h3, .main-about h4, .main-about h5, .main-about h6 {
    color: white;
  }
}

.main-about p {
  color: #555;
  font-size: 0.9rem;
  text-align: justify;
  text-justify: distribute;
  margin-bottom: 30px;
}

@media (prefers-color-scheme: dark) {
  .main-about p {
    color: #ddd;
  }
}

.main-about ul {
  margin-bottom: 30px;
}

.main-about li {
  list-style: none;
  color: #555;
  font-size: 0.9rem;
}

@media (prefers-color-scheme: dark) {
  .main-about li {
    color: #ddd;
  }
}

.main-contact {
  width: 100%;
  height: 100%;
  max-width: 250px;
  margin: auto;
  min-height: 400px;
}

.main-contact > div {
  width: 100%;
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 50px;
}

.main-contact > div > div > img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.main-contact > div > div > h1 {
  margin: 5px 0 10px 0;
}

.main-contact > div > div > a {
  margin-bottom: 10px;
  font-size: 0.9rem;
  text-decoration: none;
  color: #333;
}

@media (prefers-color-scheme: dark) {
  .main-contact > div > div > a {
    color: white;
  }
}

.main-setting {
  max-width: 700px;
  margin: auto;
}

.main-setting-box {
  padding: 40px 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(215px, 2fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(215px, 2fr));
  gap: 10px;
}

.main-setting-box > div {
  border: 1px solid #eeeeee;
  border-radius: 0.5rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media (prefers-color-scheme: dark) {
  .main-setting-box > div {
    border: 1px solid #535353;
  }
}

.main-setting-box > div h1 {
  text-align: center;
  padding: 10px;
  color: #333;
  background-color: #eee;
  border-radius: 0.4rem 0.4rem 0 0;
}

@media (prefers-color-scheme: dark) {
  .main-setting-box > div h1 {
    border-radius: 0.4rem 0.4rem 0 0;
    color: #cecece;
    background-color: rgba(32, 32, 32, 0.767);
  }
}

.main-setting-box-general {
  border: 1px solid #eee;
}

.main-setting-box-general h1 {
  height: 40px;
}

.main-setting-box-general-switches {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(150px, 4fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(150px, 4fr));
  background-color: #e1e1e1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 0  0 0.5rem 0.5rem;
}

@media (prefers-color-scheme: dark) {
  .main-setting-box-general-switches {
    background-color: #555;
  }
}

.main-setting-box-general-switches > div {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(80px, 2fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(80px, 2fr));
  gap: 10px;
  padding: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.main-setting-box-general-switches > div > p {
  text-align: center;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-setting-box-general-switches > div > label {
  margin: 0 auto;
}

.main-setting-box-board {
  border: 1px solid #eee;
}

.main-setting-box-board h1 {
  height: 40px;
}

.main-setting-box-board-switches {
  background-color: #e1e1e1;
  border-radius: 0  0 0.5rem 0.5rem;
}

@media (prefers-color-scheme: dark) {
  .main-setting-box-board-switches {
    background-color: #555;
  }
}

.main-setting-box-board-switches > div:nth-child(1) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(100px, 2fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(100px, 2fr));
  gap: 10px;
  padding: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.main-setting-box-board-switches > div:nth-child(1) > div:nth-child(1),
.main-setting-box-board-switches > div:nth-child(1) > div:nth-child(2) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(100px, 2fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(100px, 2fr));
  gap: 10px;
  padding: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.main-setting-box-board-switches > div:nth-child(1) > div:nth-child(1) > p,
.main-setting-box-board-switches > div:nth-child(1) > div:nth-child(2) > p {
  text-align: center;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-setting-box-board-switches > div:nth-child(1) > div:nth-child(1) > label,
.main-setting-box-board-switches > div:nth-child(1) > div:nth-child(2) > label {
  margin: 0 auto;
}

.main-setting-box-board-switches > div:nth-child(2) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(100px, 2fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(100px, 2fr));
  gap: 10px;
  padding: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.main-setting-box-board-switches > div:nth-child(2) > div {
  padding: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.main-setting-box-board-switches > div:nth-child(2) > div > p {
  text-align: center;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-setting-box-board-switches > div:nth-child(2) > div .board-styles {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(40px, 2fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(40px, 2fr));
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.main-setting-box-board-switches > div:nth-child(2) > div .board-styles-frame {
  margin: auto;
  width: 40px;
  height: 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-filter: drop-shadow(0px 0px 2px rgba(20, 20, 20, 0.9));
  filter: drop-shadow(0px 0px 2px rgba(20, 20, 20, 0.9));
  opacity: 0.3;
}

.main-setting-box-board-switches > div:nth-child(2) > div .board-styles-frame:hover {
  opacity: 1;
  cursor: pointer;
  -webkit-filter: drop-shadow(0px 0px 4px black);
  filter: drop-shadow(0px 0px 4px black);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.main-setting-box-board-switches > div:nth-child(2) > div .board-styles-frame.selected {
  opacity: 1;
  -webkit-filter: drop-shadow(0px 0px 4px black);
  filter: drop-shadow(0px 0px 4px black);
}

.main-setting-box-board-switches > div:nth-child(2) > div .board-styles-frame-black {
  width: 50%;
  height: 50%;
  display: block;
}

.main-setting-box-board-switches > div:nth-child(2) > div .board-styles-frame-white {
  width: 50%;
  height: 50%;
  display: block;
}

.main-setting-box-board-switches > div:nth-child(2) > div .pieces-styles {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(40px, 2fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(40px, 2fr));
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.main-setting-box-board-switches > div:nth-child(2) > div .pieces-styles-frame {
  margin: auto;
  width: 40px;
  height: 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 0.3;
}

.main-setting-box-board-switches > div:nth-child(2) > div .pieces-styles-frame:hover {
  cursor: pointer;
  -webkit-filter: drop-shadow(0px 0px 3px black);
  filter: drop-shadow(0px 0px 3px black);
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.main-setting-box-board-switches > div:nth-child(2) > div .pieces-styles-frame.selected {
  -webkit-filter: drop-shadow(0px 0px 3px black);
  filter: drop-shadow(0px 0px 3px black);
  opacity: 1;
}

.main-setting-box-board-switches > div:nth-child(2) > div .pieces-styles-frame > span:nth-of-type(1) {
  width: 50%;
  height: 100%;
  display: block;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.main-setting-box-board-switches > div:nth-child(2) > div .pieces-styles-frame > span:nth-of-type(1) > svg {
  width: 200%;
  height: 100%;
  -webkit-filter: drop-shadow(0px 0px 2px rgba(48, 48, 48, 0.9));
  filter: drop-shadow(0px 0px 2px rgba(48, 48, 48, 0.9));
}

.main-setting-box-board-switches > div:nth-child(2) > div .pieces-styles-frame > span:nth-of-type(2) {
  width: 50%;
  height: 100%;
  display: block;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.main-setting-box-board-switches > div:nth-child(2) > div .pieces-styles-frame > span:nth-of-type(2) > svg {
  position: absolute;
  right: 0;
  width: 200%;
  height: 100%;
  -webkit-filter: drop-shadow(0px 0px 2px rgba(48, 48, 48, 0.9));
  filter: drop-shadow(0px 0px 2px rgba(48, 48, 48, 0.9));
}

.main-documentation {
  min-height: 600px;
  max-width: 800px;
  margin: 0 auto;
}

.main-documentation > * {
  color: #222;
}

@media (prefers-color-scheme: dark) {
  .main-documentation > * {
    color: #fff;
  }
}

.main-documentation-box {
  margin: 0 auto;
  max-width: 800px;
}

.main-documentation-box section {
  margin: 0 auto;
  max-width: 800px;
  margin-bottom: 50px;
}

.main-documentation-box section > pre {
  font-size: 0.8rem;
}

.main-documentation-box section > pre > span {
  font-size: 0.8rem;
}

.main-documentation-box section > h1 {
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

@media (prefers-color-scheme: dark) {
  .main-documentation-box section > h1 {
    color: #fff;
  }
}

.main-documentation-box section > h1 > span {
  font-size: 0.8rem;
}

.main-documentation-box section > ul {
  margin-left: 20px;
  text-align: left;
  font-size: 0.8rem;
}

.main-documentation-box section > ul > li > a {
  font-size: 0.8rem;
  text-decoration: none;
  color: orangered;
}

@media (prefers-color-scheme: dark) {
  .main-documentation-box section > ul > li > a {
    color: greenyellow;
  }
}

.main-documentation-box section > ul #contact-us-hint {
  font-size: 0.8rem;
}

.main-documentation-box section > ul #contact-us-hint > a {
  font-size: 0.8rem;
}

.main-documentation-box-section #endpoint-context {
  color: #666;
}

@media (prefers-color-scheme: dark) {
  .main-documentation-box-section #endpoint-context {
    color: #eee;
  }
}

.main-documentation-box-section select {
  background-color: transparent;
  border: 1px solid #eee;
  font-size: 0.8rem;
  font-weight: bold;
  padding-left: 2px;
  color: #000;
  -webkit-animation-name: selector-flasher;
          animation-name: selector-flasher;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media (prefers-color-scheme: dark) {
  .main-documentation-box-section select {
    color: #eee;
  }
}

.main-documentation-box-section-container-title {
  margin: 40px auto;
  width: 250px;
  text-align: center;
  font-weight: bold;
  font-size: 1.3rem;
}

.main-documentation-box-section-container-content {
  margin-top: 10px;
  color: #333;
}

.main-documentation-box-section-container-content-title {
  font-weight: bold;
  color: orangered;
}

@media (prefers-color-scheme: dark) {
  .main-documentation-box-section-container-content-title {
    color: greenyellow;
  }
}

.main-documentation-box-section-container-content > span {
  display: block;
  margin: 5px 0;
  font-size: 0.8rem;
}

.main-documentation-box-section-container-content pre {
  font-size: 0.8rem;
}

.main-documentation-box-section-container-content pre > span {
  font-size: 0.8rem;
}

@media (prefers-color-scheme: dark) {
  .main-documentation-box-section-container-content {
    color: #eee;
  }
}

.main-documentation-box-section-container-content > p {
  font-size: 0.9rem;
  text-align: left;
  color: #333;
}

@media (prefers-color-scheme: dark) {
  .main-documentation-box-section-container-content > p {
    color: #eee;
  }
}

.main-documentation-box-section-container-content > li {
  font-size: 0.8rem;
}

.main-documentation-box-section-container-content > li pre {
  padding: 10px;
  font-size: 0.8rem;
}

.main-documentation-box-section-container-content > li span {
  font-size: 0.7rem;
}

.main-documentation-box-section-container-content > li span.endpoint-placeholder {
  color: orangered;
}

@media (prefers-color-scheme: dark) {
  .main-documentation-box-section-container-content > li span.endpoint-placeholder {
    color: greenyellow;
  }
}

.main-documentation-box-section-container-content > li ul {
  margin-left: 20px;
  margin-top: 5px;
  text-align: left;
}

.main-documentation-box-section-container-content > li ul > li {
  font-size: 0.8rem;
  list-style: none;
}

.main-documentation-box-section-container-content > li ul > li > strong {
  font-size: 0.8rem;
}

.main-documentation-box-section-container-content-endpoint-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-documentation-box-section-container-content-endpoint-name > span:nth-of-type(1) {
  width: 100px;
  display: block;
}

.main-statistic {
  max-width: 600px;
  margin: 0 auto;
}

.main-statistic-box {
  margin-top: 20px;
}

.main-statistic-box > div > h1 {
  font-weight: bold;
  color: #000;
  text-align: center;
  padding: 10px;
  margin: 20px 0;
}

@media (prefers-color-scheme: dark) {
  .main-statistic-box > div > h1 {
    color: #fff;
  }
}

.main-statistic-box > div > div {
  gap: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-statistic-box > div > div > label {
  font-size: 0.7rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.main-statistic-box > div > div > label:first-of-type {
  margin: 0 0 0 auto;
}

.main-statistic-box > div > div > label:last-of-type {
  margin: 0 auto 0 0;
}

.main-statistic-box > div > div > label > span {
  font-size: 0.7rem;
  text-align: right;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-statistic-box > div > div > label > input {
  padding: 2px;
  border-radius: 3px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  background-color: black;
  color: white;
  font-size: 0.7rem;
}

@media (prefers-color-scheme: dark) {
  .main-statistic-box > div > div > label > input {
    border: 1px solid transparent;
    background-color: black;
    color: white;
  }
}

.main-statistic-box > div > div > label > input ::-webkit-input-placeholder {
  color: #333;
}

.main-statistic-box > div > div > label > input :-ms-input-placeholder {
  color: #333;
}

.main-statistic-box > div > div > label > input ::-ms-input-placeholder {
  color: #333;
}

.main-statistic-box > div > div > label > input ::placeholder {
  color: #333;
}

@media (prefers-color-scheme: dark) {
  .main-statistic-box > div > div > label > input ::-webkit-input-placeholder {
    color: #eee;
  }
  .main-statistic-box > div > div > label > input :-ms-input-placeholder {
    color: #eee;
  }
  .main-statistic-box > div > div > label > input ::-ms-input-placeholder {
    color: #eee;
  }
  .main-statistic-box > div > div > label > input ::placeholder {
    color: #eee;
  }
}

.main-statistic-box > div > canvas {
  max-width: 600px;
  max-height: 300px;
}

@media (prefers-color-scheme: dark) {
  .main-statistic-box > div > canvas {
    -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.9));
    filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.9));
  }
}

::-webkit-calendar-picker-indicator {
  display: none;
}

@-webkit-keyframes selector-flasher {
  0% {
    border: 1px solid #eee;
  }
  50% {
    border: 1px solid #777;
  }
  100% {
    border: 1px solid #eee;
  }
}

@keyframes selector-flasher {
  0% {
    border: 1px solid #eee;
  }
  50% {
    border: 1px solid #777;
  }
  100% {
    border: 1px solid #eee;
  }
}

.footer-controls {
  position: fixed !important;
  top: 90%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3001;
  border-radius: 0 5px 5px 0;
  background-color: #000;
  padding: 5px;
  color: #eee;
  -webkit-box-shadow: 0 0 3px 1px #666;
          box-shadow: 0 0 3px 1px #666;
}

.footer-controls:hover, .footer-controls:focus {
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  .footer-controls {
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 1px #333;
            box-shadow: 0 0 5px 1px #333;
    color: #777;
  }
  .footer-controls:hover, .footer-controls:focus {
    color: #333;
  }
}

.footer-controls a {
  text-decoration: none;
  color: inherit;
  text-align: center;
  padding: 0 5px 10px 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.footer {
  position: relative;
  bottom: 0;
  display: block;
  width: 100%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  border-bottom: 1px solid #e1e1e1;
  z-index: 3000;
  background-color: #fdfdfd;
  -webkit-box-shadow: 0 0 3px 1px black;
          box-shadow: 0 0 3px 1px black;
}

@media (prefers-color-scheme: dark) {
  .footer {
    border-color: #595959;
    background-color: #333;
  }
}

.footer-information {
  max-width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #e1e1e1;
  padding: 0 5px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  background-color: #ddd;
}

@media (prefers-color-scheme: dark) {
  .footer-information {
    border-color: #2b2b2b;
    background-color: #111;
  }
}

.footer-information-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-information-list-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #333;
}

.footer-information-list-item > * {
  font-size: 0.7rem;
}

.footer-information-list-item-link {
  color: #333;
  text-decoration: none;
  padding: 0 10px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-information-list-item-link:hover, .footer-information-list-item-link:focus {
  background-color: #333;
  color: white;
}

.footer-information-list-item:hover, .footer-information-list-item:focus {
  background-color: #333;
  color: white;
}

@media (prefers-color-scheme: dark) {
  .footer-information-list-item-link {
    color: #eee;
    text-decoration: none;
  }
  .footer-information-list-item-link:hover, .footer-information-list-item-link:focus {
    background-color: white;
    color: #333;
  }
  .footer-information-list-item:hover, .footer-information-list-item:focus {
    background-color: white;
    color: #333;
  }
}

.footer-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-container-auth {
  width: 100%;
  position: relative;
  padding: 5px 0;
}

.footer-container-auth-symbol {
  width: 100%;
}

.footer-container-auth-symbol img {
  width: 15px;
  height: 15px;
  margin: 0 auto;
  display: block;
}

.footer-container-auth-copyright {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 0.5rem;
  position: relative;
}

.footer-container-auth-copyright > span {
  font-size: 0.8rem;
  position: relative;
  top: 2px;
}

@media (prefers-color-scheme: dark) {
  .footer-container-auth-copyright > span {
    color: white;
  }
}

.footer-container-auth-programmer {
  height: 20px;
  margin-top: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-container-auth-programmer-lock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-container-auth-programmer-lock img {
  width: 17px;
  height: 17px;
  margin: auto;
  display: block;
}

.footer-container-auth-programmer-logo {
  margin: auto 0 auto 0;
}

.footer-container-auth-programmer-logo > img {
  height: 21px;
}

.footer-container-auth-programmer-name {
  margin: auto 0 auto 0;
  font-weight: bold;
  height: 20px;
  width: 20px;
}

.footer-container-auth-programmer-name > a {
  text-decoration: none;
  color: #393939;
  font-size: 1.6rem;
  width: 100%;
  height: 100%;
  display: block;
  background: url("/github-light.png");
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center;
}

@media (prefers-color-scheme: dark) {
  .footer-container-auth-programmer-name > a {
    color: white;
    background: url("/github-dark.png");
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
  }
}

#promotionPanel > canvas {
  width: 100%;
  height: 100%;
  -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.9));
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.9));
}

.clockContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.clockContainer.rtl {
  right: 73px;
}

.clockContainer-hoursDisplay, .clockContainer-minutesDisplay, .clockContainer-secondsDisplay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}

.clockContainer-hoursDisplay-firstDigit, .clockContainer-minutesDisplay-firstDigit, .clockContainer-secondsDisplay-firstDigit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.clockContainer-hoursDisplay-firstDigit span, .clockContainer-minutesDisplay-firstDigit span, .clockContainer-secondsDisplay-firstDigit span {
  display: block;
  width: 10px;
  height: 2px;
  margin: 1px;
  background-color: rgba(166, 166, 166, 0.39);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.clockContainer-hoursDisplay-firstDigit span.on, .clockContainer-minutesDisplay-firstDigit span.on, .clockContainer-secondsDisplay-firstDigit span.on {
  background-color: #444;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

@media (prefers-color-scheme: dark) {
  .clockContainer-hoursDisplay-firstDigit span, .clockContainer-minutesDisplay-firstDigit span, .clockContainer-secondsDisplay-firstDigit span {
    background-color: rgba(208, 208, 208, 0.11);
  }
  .clockContainer-hoursDisplay-firstDigit span.on, .clockContainer-minutesDisplay-firstDigit span.on, .clockContainer-secondsDisplay-firstDigit span.on {
    background-color: white;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
}

.clockContainer-hoursDisplay-secondDigit, .clockContainer-minutesDisplay-secondDigit, .clockContainer-secondsDisplay-secondDigit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.clockContainer-hoursDisplay-secondDigit span, .clockContainer-minutesDisplay-secondDigit span, .clockContainer-secondsDisplay-secondDigit span {
  display: block;
  width: 10px;
  height: 2px;
  margin: 1px;
  background-color: rgba(166, 166, 166, 0.39);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.clockContainer-hoursDisplay-secondDigit span.on, .clockContainer-minutesDisplay-secondDigit span.on, .clockContainer-secondsDisplay-secondDigit span.on {
  background-color: #444;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

@media (prefers-color-scheme: dark) {
  .clockContainer-hoursDisplay-secondDigit span, .clockContainer-minutesDisplay-secondDigit span, .clockContainer-secondsDisplay-secondDigit span {
    background-color: rgba(208, 208, 208, 0.11);
  }
  .clockContainer-hoursDisplay-secondDigit span.on, .clockContainer-minutesDisplay-secondDigit span.on, .clockContainer-secondsDisplay-secondDigit span.on {
    background-color: white;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
}

.move-target {
  -webkit-box-shadow: inset 0 0 3px 1px black;
          box-shadow: inset 0 0 3px 1px black;
  -webkit-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  border: 2px solid white;
}

#panel {
  background-color: #f6f6f6;
  -webkit-box-shadow: inset 0 0 5px 1px black;
          box-shadow: inset 0 0 5px 1px black;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  border-radius: 0.3rem;
}

#screen-shot {
  width: 70% !important;
  height: 70% !important;
  background: url("/screenshot-light.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: auto;
}

@media (prefers-color-scheme: dark) {
  #screen-shot {
    width: 70% !important;
    height: 70% !important;
    background: url("/screenshot-dark.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: auto;
  }
}

.flash-icons {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  opacity: 0.2;
}

#screen-rotate {
  width: 75% !important;
  height: 75% !important;
  background: url("/rotate-light.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: auto;
}

@media (prefers-color-scheme: dark) {
  #screen-rotate {
    width: 70% !important;
    height: 70% !important;
    background: url("/rotate-dark.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: auto;
  }
}

#players.one {
  width: 70% !important;
  height: 70% !important;
  background: url("/one-player-light.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: auto;
}

@media (prefers-color-scheme: dark) {
  #players.one {
    width: 70% !important;
    height: 70% !important;
    background: url("/one-player-dark.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: auto;
  }
}

#players.two {
  width: 70% !important;
  height: 70% !important;
  background: url("/two-players-light.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: auto;
}

@media (prefers-color-scheme: dark) {
  #players.two {
    width: 70% !important;
    height: 70% !important;
    background: url("/two-players-dark.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: auto;
  }
}

td > div#screen-shot.flash-icons.clicked,
td > div#screen-rotate.flash-icons.clicked,
td > div#players.flash-icons.clicked {
  opacity: 1;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 0.5rem;
  background-color: rgba(216, 216, 216, 0.854);
  -webkit-box-shadow: inset 0 0 2px 2px #939393;
          box-shadow: inset 0 0 2px 2px #939393;
}

@media (prefers-color-scheme: dark) {
  .slider {
    -webkit-box-shadow: inset 0 0 2px 2px black;
            box-shadow: inset 0 0 2px 2px black;
    background-color: rgba(160, 160, 160, 0.854);
  }
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  display: block;
  top: 0.2rem;
  left: 0.2rem;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 0.3rem;
  margin: auto 0;
  outline: none;
  background-color: #999999;
  -webkit-box-shadow: 0 0 3px 2px #666666;
          box-shadow: 0 0 3px 2px #666666;
  border: 1px solid #666666;
}

@media (prefers-color-scheme: dark) {
  .slider:before {
    background-color: #333;
    -webkit-box-shadow: 0 0 3px 2px black;
            box-shadow: 0 0 3px 2px black;
    border: 1px solid black;
  }
}

input:checked + .slider {
  background-color: #21f34b;
  -webkit-box-shadow: inset 0 0 2px 1px #626262;
          box-shadow: inset 0 0 2px 1px #626262;
}

@media (prefers-color-scheme: dark) {
  input:checked + .slider {
    background-color: #21f34b;
    -webkit-box-shadow: inset 0 0 2px 2px black;
            box-shadow: inset 0 0 2px 2px black;
  }
}

input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #00e57a;
          box-shadow: 0 0 1px #00e57a;
  -webkit-box-shadow: inset 0 0 2px 1px #626262;
          box-shadow: inset 0 0 2px 1px #626262;
}

@media (prefers-color-scheme: dark) {
  input:focus + .slider {
    -webkit-box-shadow: 0 0 1px #00e57a;
            box-shadow: 0 0 1px #00e57a;
    -webkit-box-shadow: inset 0 0 2px 2px black;
            box-shadow: inset 0 0 2px 2px black;
  }
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}
/*# sourceMappingURL=style.css.map */
