@import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap");
* {
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Funnel Display", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  background: #e7eaf5;
  margin: 0;
}

:root {
  --header-bg: #cfd4d6;
}

.container {
  max-width: 1000px;
  margin: auto;
}

header {
  background: var(--header-bg);
  padding: 1rem;
}
header > div {
  display: flex;
  align-items: center;
}
header > div .logo {
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
}
header > div .logo img {
  width: 100%;
}
header > div .button {
  margin: 0 0 0 auto;
  display: flex;
  gap: 10px;
  position: relative;
}
header > div .button::before {
  content: "";
  height: 36px;
  width: 0px;
  display: block;
  border-left: 1px solid #fff;
  border-right: 1px solid #8a8b8c;
}
header > div .button a {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: #fff;
  border-radius: 6px;
  text-transform: uppercase;
  min-width: 95px;
  text-align: center;
}
header > div .button a:first-child {
  background: linear-gradient(to right, #2ec7e2, #249ecd);
  box-shadow: 0 -4px 4px #2ec7e2 inset;
}
header > div .button a:last-child {
  background: linear-gradient(to right, #e22e2e, #cd2424);
  box-shadow: 0 -4px 4px #ff5353 inset;
}

main {
  padding: 1rem 1rem;
}
main > div {
  display: flex;
  gap: 1.5rem;
}

.content {
  width: 100%;
}

.nav aside {
  display: grid;
  gap: 8px;
}
.nav aside a {
  display: flex;
}

.games_wrapper {
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
  background: #fff;
  width: 100%;
  padding: 1rem;
  height: 100%;
  border-radius: 15px;
}
.games_wrapper h5 {
  margin: 0;
  font-size: 1.25rem;
  color: #545859;
}
.games_wrapper .bar {
  display: flex;
  align-items: center;
}
.games_wrapper .bar .input {
  margin: 0 0 0 auto;
}
.games_wrapper .bar .input input {
  min-width: 250px;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  border: 1px solid #ced4da;
}

.games_list {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.games_list img {
  width: 100%;
  min-height: 138px;
  max-height: 138px;
}
.games_list span {
  text-align: center;
  display: block;
  color: #545859;
  font-weight: 600;
}

.games .nama_games {
  margin-top: 0.3rem;
}
.games .nama_games span {
  font-size: 13px;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  width: 100%;
}
.games .hover {
  position: absolute;
  margin: auto;
  transition: all 500ms ease-in-out;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 10px;
  opacity: 0;
}
.games .hover .content {
  background: #fff;
  height: 100%;
  display: grid;
  padding: 10px;
  border-radius: 10px;
}
.games .hover .content .tttl {
  text-align: center;
  border-bottom: 1px solid #cfd4d6;
  line-height: 13px;
  font-size: 13px;
  font-weight: 600;
}
.games .hover .content .list-cara {
  display: grid;
  gap: 0.3rem;
}
.games .hover .content .list-cara cara {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.games .hover .content .list-cara cara span {
  white-space: nowrap;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
}
.games .hover .content .list-cara cara span:first-child {
  text-align: start;
}
.games .hover .content .list-cara cara span:last-child {
  gap: 0.2rem;
  justify-content: flex-end;
}
.games .hover .content .list-cara cara span:last-child .fa-square-xmark {
  color: #b90000;
}
.games .hover .content .list-cara cara span:last-child .fa-square-check {
  color: #146c00;
}
.games .image {
  cursor: pointer;
  display: flex;
  position: relative;
}
.games .image img.active {
  transition: all 200ms ease-in-out;
}
.games .image:hover img.active {
  filter: blur(10px);
}
.games .image:hover .hover {
  opacity: 1;
}

rtp {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.3rem;
}
rtp .bar {
  width: 100%;
  overflow: hidden;
  height: 10px;
  border-radius: 25px;
  position: relative;
  background: #343663;
}
rtp .bar .value_bar {
  position: absolute;
  bottom: 0;
  height: 100%;
  background-color: #198754;
  background-size: 1rem 1rem;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  animation: 1s linear infinite progress-bar-stripes;
  border-radius: 15px;
}
rtp .text {
  font-size: 13px;
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}/*# sourceMappingURL=desktop.css.map */