.game {
  position: absolute;
  color: white;

  transform: scale(1.8);
  z-index: 3;
  font-family: Arial, Helvetica, sans-serif;
}
.fade {
  position: absolute;
  background: linear-gradient(to bottom, #1d1d1d, #1d1d1d5d, rgba(39, 39, 39, 0));
  width: 300px;
  height: 150px;
  border-radius: 15px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  width: 85vw;
  margin: 1rem auto;
}

.bg,
.overlay {
  text-align: center;
}

img,
.overlay {
  transition: 0.3s all;
  border-radius: 3px;
}

.day {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
}

.hello img {
  width: 100%;
  transition: 0.5s all ease-in-out;
}

.hello:hover img {
  transform-origin: top;
  transform: scale(1.1);
}

.topnav {
  overflow: hidden;
  position: fixed;
  z-index: 5;
  display: none;
  border-radius: 30px;
  background-color: #333;
}

p {
  transition: 0.5s;
}

.topnav p {
  float: left;
  color: #f2f2f2;
  text-align: center;

  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
.ImageForGame {
  border-radius: 15px;
  width: 180px;
  opacity: 0;

  height: 180px;
  transition: 0.5s;
  box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.725);
}
.ImageForGame:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 2px 2px rgba(54, 54, 54, 0.725);
}
@keyframes scroll {
  0% {
    top: 10px;
    transform: translate(-50%) scale(1);
    opacity: 1;
  }
  50% {
    top: 10px;
    transform: translate(-50%) scale(1.3);
    opacity: 0;
  }
  100% {
    top: -50%;
    opacity: 0;
  }
}
@keyframes scroll2 {
  0% {
    top: -50%;
    opacity: 0;
  }
  45% {
    top: 10px;
    opacity: 0;
  }
  50% {
    top: 10px;
    transform: translate(-50%) scale(1.2);
    opacity: 0;
  }
  100% {
    top: 10px;
    transform: translate(-50%) scale(1);
    opacity: 1;
  }
}
::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background-color: rgba(146, 145, 145, 0.378);
  border-radius: 20px;
}

::-moz-scrollbar {
  width: 8px;
}

::-moz-scrollbar-track {
  background-color: transparent;
}
::-moz-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-track-piece,
::-webkit-scrollbar-corner,
::-moz-scrollbar-track-piece {
  background-color: transparent;
}

@keyframes OpenLang {
  0% {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
@keyframes CloseLang {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0;
  }
}
.openLang {
  animation: OpenLang 0.8s;
  transform-origin: center;
}
.closeLang {
  animation: CloseLang 0.8s;
  transform-origin: center;
  opacity: 0;
  visibility: hidden;
}

@keyframes showalert {
  from {
    transform: translateX(-50%) translateY(-20%);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0%);
    opacity: 1;
  }
}
@keyframes hidealert {
  from {
    transform: translateX(-50%) translateY(0%);
    opacity: 1;
  }
  to {
    transform: translateX(-50%) translateY(-20%);
    opacity: 0;
  }
}

::-webkit-scrollbar-track-piece {
  border-radius: 15px;
}

body {
  background: rgb(35, 35, 35);

  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

img {
  margin: 10px;
  position: relative;
  z-index: 1;
}

.header {
  position: relative;
  z-index: 1;
  padding: 60px;
  text-align: center;
  /*background: linear-gradient(to bottom right, #9a9a9a, rgb(39, 39, 39)); */
  background: rgb(55, 53, 53);
  color: white;
  width: auto;
  font-size: 30px;

  font-family: Arial, Helvetica, sans-serif;
  border-radius: 0px 0px 15px 15px;
}

#pickforme:hover #icon {
  opacity: 0 !important;
  transform: translateY(-10px) !important;
}

#pickforme:hover #tooltipText {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

#pickforme:hover {
  width: 120px !important;
}

#pickforme {
  width: 40px !important;
}

.group {
  display: flex;
  line-height: 28px;
  align-items: center;
  position: relative;
  width: 100%;
  min-width: max-content;
  max-width: 65%;
  left: 50%;
  z-index: 500;
  transform: translateX(-50%);
  margin-bottom: 20px;
  margin-top: 10px;
}
@media screen and (max-width: 680px) {
  .group {
    width: 100%;
    min-width: max-content;
    max-width: 80%;
    margin-left: 15px;
    margin-right: 15px;
    left: 0;
    transform: translateX(0%);
  }
}
.input {
  height: 40px;
  line-height: 28px;
  padding: 0 1rem;
  width: 80%;

  padding-left: 2.5rem;
  border: 2px solid transparent;
  border-radius: 8px;

  outline: none;
  background-color: #3d3d3d;
  color: #ffffff;
  box-shadow: 0 0 5px #474747, 0 0 0 10px #9e9e9e00;
  transition: 0.3s ease;
}

.input::placeholder {
  color: #ffffff;
  text-align: center;
}

.icon {
  position: absolute;
  left: 1rem;
  fill: #ffffff;
  width: 1rem;
  height: 1rem;
}

@keyframes show {
  from {
    transform: scale(1.1);
    opacity: 0 !important;
  }

  to {
    transform: scale(1);
    opacity: 1 !important;
  }
}

.box {
  opacity: 0;
  transition: 0.5s;
}

.show {
  animation: show 0.5s;
  opacity: 1 !important;
}

.showIMG {
  opacity: 1 !important;
}

#TEST3 {
  width: 80%;
  transition: 0.5s;
}
#TEST3:hover {
  box-shadow: 0px 0px 8px #4d4d4d !important;
}

.select {
  width: fit-content;
  cursor: pointer;
  position: relative;

  transition: 300ms;
  color: white;
}

.selected {
  background-color: #363636;
  padding: 5px;
  margin-left: 10px;
  padding-right: 10px;
  margin-bottom: 3px;
  width: 150px;
  border-radius: 5px;
  position: absolute;
  z-index: 400;
  font-size: 15px;
  top: -19px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.arrow {
  position: relative;
  right: 0px;
  height: 10px;
  transform: rotate(-90deg);
  width: 25px;
  fill: white;
  z-index: 100000;
  transition: 300ms;
}

.options {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  padding: 5px;

  background-color: #363636ad;
  position: absolute;
  top: 10px;
  margin-top: 20px;
  margin-left: 8px;
  height: 100px;
  overflow-y: scroll;
  opacity: 0;
  transition: 300ms;
}

.select:hover > .options {
  opacity: 1;
  top: 0;
}

.select:hover > .selected .arrow {
  transform: rotate(0deg);
}

.option {
  border-radius: 5px;
  padding: 5px;
  transition: 300ms;
  background-color: #1d1d1dd0;
  width: 150px;
  margin-bottom: 3px;
  font-size: 15px;
}
.option:hover {
  background-color: #414141;
}

.options input[type='radio'] {
  display: none;
}

.options label {
  display: inline-block;
}
.options label::before {
  content: attr(data-txt);
}

.options input[type='radio']:checked + label {
  display: none;
}

.options input[type='radio']#all:checked + label {
  display: none;
}

.select:has(.options input[type='radio']#all:checked) .selected::before {
  content: attr(data-default);
}
.select:has(.options input[type='radio']#option-1:checked) .selected::before {
  content: attr(data-one);
}
.select:has(.options input[type='radio']#option-2:checked) .selected::before {
  content: attr(data-two);
}
.select:has(.options input[type='radio']#option-3:checked) .selected::before {
  content: attr(data-three);
}
.select:has(.options input[type='radio']#option-4:checked) .selected::before {
  content: attr(data-four);
}
.select:has(.options input[type='radio']#option-5:checked) .selected::before {
  content: attr(data-five);
}
.select:has(.options input[type='radio']#option-6:checked) .selected::before {
  content: attr(data-six);
}
.select:has(.options input[type='radio']#option-7:checked) .selected::before {
  content: attr(data-seven);
}
.select:has(.options input[type='radio']#option-8:checked) .selected::before {
  content: attr(data-eight);
}
.select:has(.options input[type='radio']#option-9:checked) .selected::before {
  content: attr(data-nine);
}
.select:has(.options input[type='radio']#option-10:checked) .selected::before {
  content: attr(data-ten);
}
.select:has(.options input[type='radio']#option-11:checked) .selected::before {
  content: attr(data-eleven);
}

.ipAR {
  transition: 0.5s;
}
.ipAR:hover {
  transform: scale(1.2) !important;
}

.header-ad {
  display: none;
}
@media (min-width: 1024px) {
  .header-ad {
    display: block;
  }
}
#TopMenu {
  box-shadow: 0px 0px 7px rgb(19, 19, 19);
  top: 10px;
  border-radius: 15px 15px 15px 15px;
  z-index: 7;
  position: fixed;
  overflow-y: hidden;
  left: 10px;
  right: 10px;
  background-color: #1d1d1d;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1024px) {
  #TopMenu {
    right: 300px;
  }
}
.split {
  display: flex;
  width: 100%;
}
.split-left {
  flex: 1;
}
.sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .sidebar {
    display: block;
    flex: 0 0 300px;
  }
  .sidebar .wrapper {
    position: sticky;
    top: 0;
  }
}

.notice-box-wrapper {
  position: fixed;
  bottom: 20px;
  left: 50%;

  z-index: 800;
  transform: translateX(-50%);
  width: 80%;
  max-width: 400px;
  visibility: hidden;
}

.notice-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #222;
  color: white;
  padding: 10px 15px;

  border-radius: 15px;
  box-shadow: 0px 0px 10px rgb(0, 0, 0);
  cursor: pointer;
  animation: slideUp 0.5s ease forwards 2s;
}

.svg-placeholder {
  margin-top: 3px;
  margin-right: 10px;
}

.notice-content {
  font-size: 16px;
  line-height: 1.2;
  flex-grow: 1;
}

.notice-content strong {
  display: block;
  font-weight: bold;
  color: white;
}

.notice-content span {
  display: block;
  font-weight: normal;
  color: #ccc;
}

.icon-button {
  background: transparent;
  border: none;
  color: white;
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  line-height: 1;
  width: 24px;
  height: 24px;
}

.icon-button:hover {
  color: #aaa;
}

@keyframes slideUp {
  0% {
    transform: translateY(200%);
    visibility: visible;
  }
  100% {
    transform: translateY(0);
    visibility: visible;
  }
}

.Discord {
  transition: 0.5s !important;
  fill: rgb(255, 255, 255);
}

.Discord:hover {
  fill: #7785cc !important;
  box-shadow: 0px 0px 8px rgb(0, 0, 0);
}

@keyframes menuM {
  0% {
    border: solid gray 3px;
  }
  50% {
    border: solid rgb(13, 13, 13) 3px;
  }
  100% {
    border: solid gray 3px;
  }
}

.MenuIt {
  position: relative;
  display: inline-block;
  margin-top: 5px;
  padding: 10px;
  border-radius: 10px;
  height: 75px;
  width: 90%;
  color: #000;

  left: 50%;
  transform: translateX(-50%);
  border: solid 2px rgb(31, 31, 31);
  box-shadow: 0px 0px 8px black;
  background: linear-gradient(to bottom left, rgba(131, 131, 131, 0.801), transparent);
  overflow: hidden;
  transition: 0.8s;
}

.MenuIt:hover {
  background-color: #565656;
  transform: translateX(-50%);
}
.MenuIt h1 {
  font-size: 21px !important;
}

.iconsmenu {
  color: white;
  position: absolute;
  transform: rotate(-16deg) translateY(-50%) scale(3);
  right: 20px;
  top: 50%;
  color: rgba(255, 255, 255, 0.158);
}

@keyframes SLMenu {
  from {
    right: 10px;
    transform: translateY(-50%);
    opacity: 1;
  }
  to {
    right: -310px;
    transform: translateY(-50%);
    opacity: 0;
  }
}

@keyframes SLMenu2 {
  from {
    right: -310px;
    transform: translateY(-50%);
    opacity: 0;
  }
  to {
    right: 10px;
    transform: translateY(-50%);
    opacity: 1;
  }
}

.SlSlide {
  animation: SLMenu 0.5s !important;
}

.SlSlideIn {
  animation: SLMenu2 0.5s !important;
}

.featgameit {
  min-width: 200px;
  flex: 0 0 auto;
  float: left;
  top: 50%;
  transform: translateY(-50%);
  position: relative;
  height: 155px !important;
  width: 265px !important;

  background-color: #161616;
  border-radius: 15px;
  margin-right: 15px;
  cursor: pointer;
  transition: 0.8s;
  max-width: 265px !important;
}
.featgameit p {
  width: fit-content;
  font-size: 15px;
}

.featgameit:hover {
  transform: translateY(-50%);
  filter: brightness(70%);
}

.text {
  color: rgb(202, 202, 202);
  font-size: 18px;
  margin: 0 15px;
  opacity: 0;
  opacity: 1;
  transform: translateY(0px);
}

.arroww {
  color: rgb(158, 158, 158);

  font-size: 24px;
  opacity: 0;
  animation: fadeInMove 2s infinite;
  padding: none !important;
  height: fit-content;
}

.left-arrow {
  animation-delay: 0.2s;
  padding: none !important;
  height: fit-content;
}

.right-arrow {
  animation-delay: 0.2s;
  padding: none !important;
  height: fit-content;
}

@keyframes fadeInMove {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }
  50% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}
@keyframes fadeInMovetxt {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }
  50% {
    opacity: 1;
    transform: translateY(-1px);
  }
  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}

@keyframes medal {
  0% {
    left: -500px;
  }
  20% {
    left: -1px;
  }
  50% {
    left: -1px;
  }
  70% {
    left: -1px;
  }
  90% {
    opacity: 1;
    left: -1px;
  }
  100% {
    opacity: 0;
    left: -500px;
  }
}

.textover {
  position: absolute;
  top: 15%;
  left: 50%;
  width: 80% !important;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 15px;
  background-color: #191919db;
  color: rgb(255, 255, 255) !important;
  font-weight: bold;
  text-align: center;
  font-size: 15px;
  padding: 3px 4px 4px 3px;
}
