@media (prefers-color-scheme: light) {
  :root {
    --scroll-bar-color: rgba(255,255,255 ,0.5);
    --header-red-color: #bf5d5d;
    --header-top-color: #dddddd;
    --text-color: #000;
    --invert-color: #fff;
    --main-color-backg: #ffffff6e;
    --search-bar-background: #bebebe;
    --footer-contrib-color: rgba(81, 81, 227, 0.8);
    --footer-color: #dcdcdc;
    --btn-color: rgb(81, 81, 227);
    --btn-color-outline: rgb(121, 121, 236);
    --btn-text-color: #fff;
    --card-background-color: #cccccc;
    --background-game: rgb(255, 255, 255);
    --map-background: #f4f4f4;
    --green-background: #62ba55;
    --green-outside: #76ad56;
    --red-background: #c55b5b;
    --red-outside: #e17878;
    --orange-background: #c5795b;
    --orange-outside: #e19678;
    --orange-color: #d3921a;
    --red-color: #a53b3b;
    --green-color: #4d9142;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --scroll-bar-color: rgba(0,0,0 ,0.5);
    --header-red-color: #ab4747;
    --header-top-color: #393939;
    --text-color: #fff;
    --invert-color: #000;
    --main-color-backg: #0000006e;
    --search-bar-background: #0e0e0e60;
    --footer-contrib-color: rgba(81, 81, 227, 0.8);
    --btn-color-outline: rgb(121, 121, 236);
    --footer-color: #07030a;
    --btn-color: rgb(44, 44, 150);
    --btn-text-color: rgb(230,230,230);
    --card-background-color: #1e1e1e;
    --background-game: rgb(26,26,26);
    --map-background: #121212;
    --green-background: #3b8031;
    --green-outside: #76ad56;
    --red-background: #9e4545;
    --red-outside: #793838;
    --orange-background: #be6733;
    --orange-outside: #774426;
    --orange-color: #e9ae40;
    --red-color: #e45555;
    --green-color: #62ba55;
  }
}
/*for the search bar*/
#searchField {
  gap: 5px;
  display: flex;
  width: 300px;
  height: 25px;
  border-radius: 3px;
  background-color: var(--search-bar-background);
  color: var(--text-color);
  align-items: center;
  transition: 0.2s;
  /* search icon */
}
#searchField svg {
  margin-left: 5px;
}
#searchField {
  /* input area */
}
#searchField #searchInput {
  background-color: transparent;
  color: var(--text-color);
  border: none;
  width: 100%;
  text-align: left;
}
#searchField #searchInput:focus {
  outline: none;
}

#searchField:hover {
  scale: 1.1;
}

#searchField:focus-within {
  width: calc(80% - 192px);
  margin-left: 5%;
}

#search {
  display: none;
  position: relative;
  width: calc(100wv - 40px);
  padding: 20px;
  height: calc(100% - 40px);
  flex-direction: row;
}

#researchEmptyOrError {
  color: var(--text-color);
  display: flex;
  width: 100%;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
#researchEmptyOrError span {
  font-size: large;
}

#mobileSearchField {
  gap: 5px;
  margin-left: 0px;
  display: none;
  width: calc(100wv - 40px);
  height: 25px;
  background-color: var(--card-background-color);
  cursor: text;
  border-radius: 10px;
  border: 2px solid var(--header-top-color);
  color: var(--text-color);
  align-items: center;
  transition: 0.2s;
  /* search icon */
}
#mobileSearchField svg {
  margin-left: 5px;
}
#mobileSearchField #mobileSearchInput {
  background-color: transparent;
  color: var(--text-color);
  border: none;
  width: 100%;
  text-align: left;
}
#mobileSearchField #mobileSearchInput:focus {
  outline: none;
}
@media (max-width: 768px) {
  #mobileSearchField {
    display: flex;
  }
}

#topSearchMenuBar {
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  flex-shrink: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  width: calc(100wv - 40px);
  gap: 5px;
}
#topSearchMenuBar #returnHomeBtn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  background-color: var(--card-background-color);
  cursor: pointer;
  border-radius: 10px;
  border: 2px solid var(--header-top-color);
  transition: background-color, border-color 0.2s ease;
}
#topSearchMenuBar #returnHomeBtn:hover {
  background-color: var(--header-top-color);
  border-color: var(--card-background-color);
}
@media (max-width: 768px) {
  #topSearchMenuBar #returnHomeBtn {
    display: none;
  }
}
#topSearchMenuBar #textInfoField {
  flex-grow: 1;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: smaller;
  color: var(--text-color);
  background-color: var(--card-background-color);
  border-radius: 10px;
  border: 2px solid var(--header-top-color);
}

/* for ALL header */
header {
  margin: 0;
  position: sticky;
  top: 0;
  width: 100%;
  padding: 5px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  z-index: 1000;
}

/* for the header */
#mainHeader {
  display: flex;
  align-items: center;
  background-color: var(--header-top-color);
}
#mainHeader #titleNameMetrop {
  padding-left: 10px;
  padding-right: 20px;
}
#mainHeader img {
  height: 30px;
  width: auto;
}

/* for smartphone and small screen*/
@media (max-width: 768px) {
  #mainHeader {
    display: none;
  }
}
/*diferent header type*/
#betaTest {
  display: none;
}

#welcomeHeader {
  display: none;
  background-color: rgba(81, 81, 227, 0.8);
}
#welcomeHeader h3, #welcomeHeader p {
  color: #fff;
}

#updateHeader {
  display: none;
  background-color: rgba(82, 201, 88, 0.8);
}

.headerInfo {
  position: relative !important;
  box-shadow: none;
  background-color: var(--header-red-color);
}

/* text in header */
.headerTextMainDes {
  font-size: smaller;
}
.headerTextMainDes a {
  font-size: smaller;
}

.headerTextDes {
  font-size: x-small;
}

#popupMainInfoQuiz {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--main-color-backg);
  backdrop-filter: blur(5px);
  z-index: 1001;
}

#twoColSide {
  display: flex;
  position: relative;
  margin-top: 135px;
  height: calc(100% - 50px);
}

#cardInfoPopUp_MainBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  border-radius: 10px;
  border: solid 2px var(--header-top-color);
  background-color: var(--card-background-color);
  overflow-x: hidden;
  text-align: left;
}
@media (max-width: 1100px) {
  #cardInfoPopUp_MainBox {
    height: 100dvh;
  }
}

#cardInfoPopUp_MainBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 135px;
  background-image: var(--bg-image-bg-card);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

#cardInfoPopUp_imgFlag {
  position: absolute;
  height: 50px;
  width: auto;
  left: 50px;
  top: 100px;
  border: solid 2px var(--header-top-color);
}

.btn-exit {
  background-color: var(--search-bar-background);
  color: var(--text-color);
  border-radius: 5px;
  border: solid 1px rgba(109, 109, 109, 0.5568627451);
  height: 25px;
  width: 25px;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.btn-exit svg {
  transition: transform 0.2s;
}
.btn-exit svg:hover {
  transform: rotate(90deg);
}

#cardInfoPopUp_title {
  font-size: 25px;
  margin-top: 20px;
  margin-left: 50px;
  padding-left: 0px;
  text-align: left;
}

#cardInfoPopUp_shortResume {
  font-size: 16px;
  margin-top: 20px;
  margin-left: 50px;
  padding-left: 0px;
  text-align: left;
  width: 80%;
  min-width: 200px;
  max-width: 700px;
}

#cardInfoPopUp_longResume {
  font-size: 12px;
  margin-top: 20px;
  margin-left: 50px;
  padding-left: 0px;
  text-align: left;
}

#cardInfoPopUp_info_lenght {
  font-size: 16px;
  opacity: 0.6;
  margin-top: 50px;
  margin-left: 50px;
  padding-left: 0px;
  text-align: left;
}

#cardInfoPopUp_listGameMode {
  flex-shrink: 1;
  margin: 0;
  padding: 15px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: top;
  height: 100%;
  width: auto;
  background-color: var(--main-color-backg);
  border-left: solid 2px var(--header-top-color);
  gap: 20px;
}
#cardInfoPopUp_listGameMode .btn svg {
  flex-shrink: 0;
  margin-right: auto;
}
#cardInfoPopUp_listGameMode .btn {
  min-width: 230px;
  width: 100%;
}

#infoSide {
  flex-grow: 1;
  margin-top: 20px;
  overflow: hidden;
  height: 100%;
}

@media (max-width: 1100px) {
  #twoColSide {
    flex-direction: column;
    height: auto;
    overflow-y: hidden;
  }
  #infoSide {
    height: auto;
    flex-shrink: 0;
  }
  #cardInfoPopUp_listGameMode {
    flex-shrink: 0;
    height: auto;
    width: calc(100% - 40px);
    border-left: none;
    border-top: solid 2px var(--header-top-color);
    padding-bottom: 200px;
  }
  #cardInfoPopUp_MainBox {
    width: 100%;
  }
  #cardInfoPopUp_title, #cardInfoPopUp_shortResume, #cardInfoPopUp_longResume, #cardInfoPopUp_info_lenght {
    padding-right: 50px;
  }
}
.warning {
  display: none;
  width: calc(100% - 70px);
  height: auto;
  background-color: var(--header-top-color);
  border-radius: 10px;
  overflow: hidden;
  margin-left: 50px;
  margin-right: 20px;
}
.warning .warnTitle {
  width: 100%;
  height: auto;
  background-color: var(--red-outside);
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 5px;
  color: var(--text-color);
  padding: 5px;
}
.warning .warnExplain {
  text-align: left;
  color: var(--text-color);
  font-size: small;
  padding: 5px;
}
.warning .invlolved {
  margin-top: 20px;
  color: var(--text-color);
}
.warning .invlolved .involvedList {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5px;
}
.warning .invlolved .involvedList .element {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.warning .invlolved .involvedList .element img {
  height: 15px;
  width: auto;
}

#navbar {
  display: none;
  position: fixed;
  bottom: 0px;
  z-index: 150;
  left: 0px;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  background-color: var(--header-top-color);
  box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.25);
}
#navbar button {
  flex-grow: 1;
  height: 100%;
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
}

@media (max-width: 768px) {
  #navbar {
    display: flex;
  }
}
.emptyHomeIcon {
  display: none;
}

.fullSettingsIcon {
  display: none;
  color: var(--btn-color-outline);
}

.fullHomeIcon {
  color: var(--btn-color-outline);
}

#hightlightContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 70vh;
  max-height: 800px;
  min-height: 450px;
  background-color: var(--map-background);
  box-shadow: 0 -6px 12px var(--background-game) inset;
}

.spaceTest {
  margin-top: 1200px;
}

#widgetList {
  display: flex;
  flex-grow: 1;
  flex-direction: row;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  width: 100%;
  gap: 10px;
}
#widgetList::-webkit-scrollbar {
  display: none;
}
#widgetList.lock-horizontal {
  overflow-x: hidden;
  scroll-snap-type: none;
}
#widgetList.lock-horizontal .widget:first-child {
  margin-left: 0;
}
#widgetList.lock-horizontal .widget:last-child {
  margin-right: 0;
}
#widgetList .widget:first-child {
  margin-left: 10px;
}
#widgetList .widget:last-child {
  margin-right: 10px;
}

.widget {
  flex-shrink: 0;
  width: calc(100vw - 40px);
  height: calc(100% - 40px);
  scroll-snap-align: center;
  background-color: var(--card-background-color);
  border: solid 2px var(--header-top-color);
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  transform-origin: center center;
}
.widget .widget-content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overscroll-behavior-y: contain;
}
.widget.is-animating {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-radius 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}
.widget.is-fullscreen .showcase_flag {
  margin-top: 350px;
  height: 60px;
}
.widget.is-fullscreen .cards_showcase {
  height: auto;
  overflow: visible;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .widget.is-fullscreen .cards_showcase {
    margin-bottom: 70px;
  }
}
.widget.is-fullscreen {
  border: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  border-radius: 0px;
  z-index: 999;
}
.widget .showcase_flag {
  margin-top: auto;
  height: 8%;
  padding-left: 10px;
  margin-left: 20px;
  width: auto;
}
.widget .showcase_name {
  margin-top: 10px;
  margin-left: 20px;
  padding-left: 10px;
  font-size: clamp(18px, 8cqh, 40px);
  max-width: calc(100% - 40px);
}
.widget .cards_showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  padding: 10px;
  margin: 20px;
  width: calc(100% - 60px);
}
@media (max-width: 768px) {
  .widget .cards_showcase {
    margin: 10px;
    width: calc(100% - 40px);
  }
}
.widget .cards_showcase {
  margin-bottom: 0;
  height: 220px;
  overflow: hidden;
}
.widget .cards_showcase .card {
  width: 100%;
  height: 200px;
}

#navBarTop {
  flex-shrink: 0;
  position: relative;
  width: calc(100% - 40px);
  overflow-x: auto;
  display: flex;
  gap: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 20px;
}
#navBarTop::-webkit-scrollbar {
  display: none;
}
#navBarTop {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#navBarTop a {
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  font-size: 18px;
  padding: 5px 0;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
}

.indicator {
  position: absolute;
  bottom: 8px;
  left: 30px;
  width: 65px;
  height: 3px;
  background: var(--btn-color-outline);
  border-radius: 10px;
  transition: all 0.3s ease;
}

#selectionBar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 40px;
}
@media (max-width: 768px) {
  #selectionBar {
    display: none;
  }
}
#selectionBar {
  gap: 8px;
  margin-bottom: 20px;
}

#listDots {
  box-sizing: border-box;
  padding: 10px;
  height: 40px;
  width: auto;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
#listDots .dot {
  height: 8px;
  width: 8px;
  border-radius: 100px;
  background-color: var(--header-top-color);
}
#listDots .active {
  background-color: var(--btn-color-outline);
}
#listDots {
  color: var(--text-color);
  background-color: var(--card-background-color);
  cursor: pointer;
  border-radius: 10px;
  border: 2px solid var(--header-top-color);
  transition: background-color, border-color 0.2s ease;
}

#left, #right {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  background-color: var(--card-background-color);
  cursor: pointer;
  border-radius: 10px;
  border: 2px solid var(--header-top-color);
  transition: background-color, border-color 0.2s ease;
}
#left:hover, #right:hover {
  background-color: var(--header-top-color);
  border-color: var(--card-background-color);
}

.btn {
  color: var(--text-color);
  background-color: var(--card-background-color);
  border-radius: 10px;
  border: 2px solid var(--header-top-color);
  transition: background-color, border-color 0.2s ease;
}
.btn:hover {
  background-color: var(--header-top-color);
  border-color: var(--card-background-color);
}
.btn {
  padding: 5px 10px;
  font-style: normal;
  font-size: larger;
  font-variation-settings: "wdth" 100, "YTLC" 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.btn-settings {
  background-color: var(--search-bar-background);
  color: var(--text-color);
  border-radius: 5px;
  border: solid 1px rgba(109, 109, 109, 0.5568627451);
  height: 25px;
  width: 25px;
  margin-left: auto;
  margin-right: 10px;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.btn-settings svg {
  transition: transform 0.2s;
}
.btn-settings svg:hover {
  transform: rotate(90deg);
}

#btn-settings-id-svg-close {
  display: none;
  justify-content: center;
  align-item: center;
}

#btn-settings-id-svg-open {
  display: flex;
  justify-content: center;
  align-item: center;
}

.shimmer {
  background: linear-gradient(to right, var(--card-background-color) 8%, var(--header-top-color) 18%, var(--card-background-color) 33%);
  background-size: 400%;
  animation: shimmer 1.2s infinite ease;
}

.cardLoader {
  height: 200px;
  border: 2px solid var(--header-top-color);
  border-radius: 10px;
}

@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}
/* --- Firefox --- */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-bar-color) transparent;
}

/* --- for Chrome, Edge and Safari --- */
*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--scroll-bar-color);
  border-radius: 10px;
  border: 2px solid transparent;
  transition: background-color 0.3s, opacity 0.3s;
  opacity: 0;
}

*:hover::-webkit-scrollbar-thumb {
  opacity: 1;
}

.title-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 38px;
}
.title-icon svg {
  width: 1.4em;
  height: 1.4em;
  flex-shrink: 0;
}

.lang_select {
  margin-left: 40px;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: var(--footer-color);
  color: var(--text-color);
  width: 350px;
  overflow: hidden;
  border: 1px solid rgba(53, 52, 52, 0.226);
}
.lang_select input {
  display: none;
}
.lang_select label {
  width: 100%;
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-size: 14px;
}
.lang_select .selection {
  display: none;
  position: absolute;
  height: 100%;
  width: 87.5px;
  z-index: 0;
  left: 0;
  top: 0;
  transition: 0.15s ease;
}
.lang_select label:has(input:checked) {
  color: #fff;
}
.lang_select label:has(input:checked) ~ .selection {
  background-color: var(--btn-color);
  display: inline-block;
}
.lang_select label:nth-child(1):has(input:checked) ~ .selection {
  transform: translateX(0px);
}
.lang_select label:nth-child(2):has(input:checked) ~ .selection {
  transform: translateX(87.5px);
}
.lang_select label:nth-child(3):has(input:checked) ~ .selection {
  transform: translateX(175px);
}
.lang_select label:nth-child(4):has(input:checked) ~ .selection {
  transform: translateX(262.5px);
}

.horizontalSelectorSize2 {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: var(--footer-color);
  color: var(--text-color);
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(53, 52, 52, 0.226);
}
.horizontalSelectorSize2 input {
  display: none;
}
.horizontalSelectorSize2 label {
  width: 100%;
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-size: 14px;
}
.horizontalSelectorSize2 .selection {
  display: none;
  position: absolute;
  height: 100%;
  width: calc(100% / 2);
  z-index: 0;
  left: 0;
  top: 0;
  transition: 0.15s ease;
}
.horizontalSelectorSize2 label:has(input:checked) {
  color: #fff;
}
.horizontalSelectorSize2 label:has(input:checked) ~ .selection {
  background-color: var(--btn-color);
  display: inline-block;
}
.horizontalSelectorSize2 label:nth-child(1):has(input:checked) ~ .selection {
  transform: translateX(calc(100% * 0));
}
.horizontalSelectorSize2 label:nth-child(2):has(input:checked) ~ .selection {
  transform: translateX(calc(100% * 1));
}

.horizontalSelectorSize3 {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: var(--footer-color);
  color: var(--text-color);
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(53, 52, 52, 0.226);
}
.horizontalSelectorSize3 input {
  display: none;
}
.horizontalSelectorSize3 label {
  width: 100%;
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-size: 14px;
}
.horizontalSelectorSize3 .selection {
  display: none;
  position: absolute;
  height: 100%;
  width: calc(100% / 3);
  z-index: 0;
  left: 0;
  top: 0;
  transition: 0.15s ease;
}
.horizontalSelectorSize3 label:has(input:checked) {
  color: #fff;
}
.horizontalSelectorSize3 label:has(input:checked) ~ .selection {
  background-color: var(--btn-color);
  display: inline-block;
}
.horizontalSelectorSize3 label:nth-child(1):has(input:checked) ~ .selection {
  transform: translateX(calc(100% * 0));
}
.horizontalSelectorSize3 label:nth-child(2):has(input:checked) ~ .selection {
  transform: translateX(calc(100% * 1));
}
.horizontalSelectorSize3 label:nth-child(3):has(input:checked) ~ .selection {
  transform: translateX(calc(100% * 2));
}

.horizontalSelectorSize4 {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: var(--footer-color);
  color: var(--text-color);
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(53, 52, 52, 0.226);
}
.horizontalSelectorSize4 input {
  display: none;
}
.horizontalSelectorSize4 label {
  width: 100%;
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-size: 14px;
}
.horizontalSelectorSize4 .selection {
  display: none;
  position: absolute;
  height: 100%;
  width: calc(100% / 4);
  z-index: 0;
  left: 0;
  top: 0;
  transition: 0.15s ease;
}
.horizontalSelectorSize4 label:has(input:checked) {
  color: #fff;
}
.horizontalSelectorSize4 label:has(input:checked) ~ .selection {
  background-color: var(--btn-color);
  display: inline-block;
}
.horizontalSelectorSize4 label:nth-child(1):has(input:checked) ~ .selection {
  transform: translateX(calc(100% * 0));
}
.horizontalSelectorSize4 label:nth-child(2):has(input:checked) ~ .selection {
  transform: translateX(calc(100% * 1));
}
.horizontalSelectorSize4 label:nth-child(3):has(input:checked) ~ .selection {
  transform: translateX(calc(100% * 2));
}
.horizontalSelectorSize4 label:nth-child(4):has(input:checked) ~ .selection {
  transform: translateX(calc(100% * 3));
}

:root {
  --img-show: none;
}

.card {
  height: 200px;
  border: 2px solid var(--header-top-color);
  background-color: var(--card-background-color);
  border-radius: 10px;
  text-align: left;
  position: relative;
  box-shadow: inset 0px -15px 40px -40px var(--btn-color-outline);
}
.card .svgCard {
  color: var(--text-color);
  margin-top: 20px;
  margin-left: 20px;
}
.card .flagCard {
  margin-top: 20px;
  margin-left: 20px;
  height: 30px;
  width: auto;
}
.card .titleCard {
  text-align: left;
  margin-left: 20px;
  margin-right: 20px;
}
.card .exploreCard {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 80;
}
.card .exploreCard svg {
  fill: var(--text-color);
}
.card {
  transition: border 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  cursor: pointer;
  border: 2px solid var(--card-background-color);
  background-color: var(--header-top-color);
  box-shadow: inset 0px -70px 40px -30px var(--btn-color-outline);
}

.menuCards {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  padding: 10px;
}
@media (max-width: 768px) {
  .menuCards {
    padding-bottom: 70px;
  }
}

#card_all {
  display: grid;
}

#card_search {
  margin-top: 10px;
  padding: 0px;
  padding-bottom: 70px;
}

#settings {
  display: none;
}

#settings-menu {
  display: flex;
  width: 100%;
}
#settings-menu #settings-content {
  padding-top: 25px;
  margin-left: auto;
  margin-right: auto;
  width: 700px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 50px;
}
#settings-menu #settings-content h1, #settings-menu #settings-content p, #settings-menu #settings-content h3 {
  padding-left: 0px;
}
#settings-menu #settings-content #warning-beta-settings {
  border-left: solid 5px #cab33c;
  padding-left: 10px;
  margin-top: 25px;
}
#settings-menu #settings-content #warning-beta-settings span {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #cab33c;
}
#settings-menu #settings-content #warning-beta-settings p {
  text-align: left;
  font-size: small;
}

.switch {
  position: relative;
  height: 1.5rem;
  width: 3rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 9999px;
  background-color: rgba(100, 116, 139, 0.377);
  transition: all 0.3s ease;
}

.switch:checked {
  background-color: var(--footer-contrib-color);
}

.switch::before {
  position: absolute;
  content: "";
  left: -0.1rem;
  top: -0.1rem;
  display: block;
  height: 1.6rem;
  width: 1.6rem;
  cursor: pointer;
  border: 1px solid rgba(100, 116, 139, 0.527);
  border-radius: 9999px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 3px 10px rgba(100, 116, 139, 0.327);
  transition: all 0.3s ease;
}

.switch:hover::before {
  box-shadow: 0 0 0px 8px rgba(0, 0, 0, 0.15);
}

.switch:checked:hover::before {
  box-shadow: 0 0 0px 8px rgba(77, 175, 80, 0.15);
}

.switch:checked:before {
  transform: translateX(100%);
  border-color: var(--footer-contrib-color);
}

.settings-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.settings-line p {
  flex-grow: 1;
  text-align: left;
}
.settings-line input {
  flex-shrink: 0;
}

select, ::picker(select) {
  appearance: base-select;
}

selectedcontent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
selectedcontent span {
  flex-grow: 1;
}

select {
  color: var(--text-color);
  background-color: var(--card-background-color);
  border-radius: 10px;
  border: 2px solid var(--header-top-color);
  transition: background-color 0.2s ease, border-color 0.2s ease;
  padding: 5px;
  cursor: pointer;
}
select:hover {
  background-color: var(--header-top-color);
  border-color: var(--card-background-color);
}
select option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
select option span {
  flex-grow: 1;
}
select option img, select selectedcontent img {
  max-height: 10px;
  width: auto;
  flex-shrink: 0;
}
select::picker(select) {
  appearance: base-select;
}

#appVerControl {
  color: var(--text-color);
  background-color: var(--card-background-color);
  border-radius: 10px;
  border: 2px solid var(--header-top-color);
  height: auto;
  padding: 10px;
}
#appVerControl .titleDivVerCtrl {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 7px;
}
#appVerControl .subText {
  text-align: left;
}
#appVerControl .info {
  margin-right: auto;
}
#appVerControl .lineInfo {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 15px;
}
#appVerControl a {
  font-size: x-small;
  opacity: 0.5;
}

#geoDataVerControl {
  color: var(--text-color);
  background-color: var(--card-background-color);
  border-radius: 10px;
  border: 2px solid var(--header-top-color);
  height: auto;
  padding: 10px;
}
#geoDataVerControl .titleDivVerCtrl {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 7px;
}
#geoDataVerControl .subText {
  text-align: left;
}
#geoDataVerControl .info {
  margin-right: auto;
}
#geoDataVerControl .lineInfo {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 15px;
}
#geoDataVerControl a {
  font-size: x-small;
  opacity: 0.5;
}
#geoDataVerControl #GeolicenseList {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: left;
  flex-direction: column;
  gap: 10px;
}
#geoDataVerControl #GeolicenseList span {
  font-size: small;
  text-align: left;
}

* {
  font-family: "Momo Trust Display", "Mochiy Pop One", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}

body, html {
  position: relative;
  overflow-x: hidden;
  height: 100%;
  margin: 0;
  /* background */
  background-color: var(--background-game);
}

h1, h2, h3, h4, h5, p, a {
  color: var(--text-color);
}

h1 {
  margin-top: 1px;
  margin-bottom: 1px;
  padding-left: 5px;
  font-size: larger;
  text-align: left;
}

img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#logoMainPage {
  height: 30px;
}

svg {
  fill: currentColor;
}

/* main menu */
#menu {
  margin-top: 0px;
  text-align: center;
  align-content: center;
}

/* for smartphone and small screen*/
@media (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }
}
/* DELETE THIS LATER */
#betaElement {
  display: none;
}

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