.iflex {
  display: -webkit-inline-flex;
  display: -webkit-inline-box;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: inline-flex;
}
.flex {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.flex.horz {
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.flex.vert {
  -webkit-flex-direction: column;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.flex.rev-vert {
  -webkit-flex-direction: column-reverse;
  -webkit-box-orient: vertical-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  -o-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.flex.horz-rev {
  -webkit-flex-direction: row-reverse;
  -webkit-box-orient: horizontal-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
/* main axis */
.flex.start {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
}
.flex.center {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
.flex.end {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
}
.flex.space {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.flex.evenly {
  -webkit-justify-content: space-evenly;
  -moz-justify-content: space-evenly;
  -ms-justify-content: space-evenly;
  -o-justify-content: space-evenly;
  justify-content: space-evenly;
}
.flex.around {
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  justify-content: space-around;
}
/* cross-axis */
.flex.top,
flex.left {
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
}
.flex.middle {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}
.flex.bottom,
.flex.right {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
}
.flex.stretch {
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
}
/* content */
.flex.content.top {
  -webkit-align-content: flex-start;
  -moz-align-content: flex-start;
  -ms-align-content: flex-start;
  -o-align-content: flex-start;
  align-content: flex-start;
}
.flex1 {
  flex-grow: 1;
  box-flex: 1;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
}
.flex.shrink {
  flex-shrink: 1;
  -webkit-flex-shrink: 1;
  -moz-flex-shrink: 1;
  -o-flex-shrink: 1;
  -ms-flex-shrink: 1;
}
.flex.wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex.nowrap {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.fullscreen {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.noselect {
  touch-action: none;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                          supported by Chrome and Opera */
}
.safe {
  position: absolute;
  left: constant(safe-area-inset-left);
  left: env(safe-area-inset-left);
  top: constant(safe-area-inset-top);
  top: env(safe-area-inset-top);
  right: constant(safe-area-inset-right);
  right: env(safe-area-inset-right);
  bottom: constant(safe-area-inset-bottom);
  bottom: env(safe-area-inset-bottom);
}
/*****************************************************************************
    scrollbar
*****************************************************************************/
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
.underlineFocus {
  position: absolute;
  bottom: -5px;
  left: 0px;
  right: 0px;
  content: "";
  border-bottom: 3px double #fa293d;
  outline: 0;
}
.textinput {
  border: 1px solid #efefef;
  border-radius: 0.25rem;
}
.textinput input {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0.25rem;
  outline: 0;
  margin: 0;
  border: 0;
  font-size: 1rem;
  border-radius: 0.25rem;
}
.textinput.error {
  border: 1px solid #fa293d;
}
.textbutton {
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  outline: none;
  background-color: #efefef;
  color: #888888;
  border-radius: 0.25rem;
  border: 1px solid transparent;
  padding: 0.5rem;
  position: relative;
}
.textbutton.active {
  border: 1px solid #888888;
  background-color: #fafafa;
}
#busy {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.dialog_backdrop {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  transition: opacity 0.25s, background-color 0.25s;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
}
.dialog_backdrop.bury {
  background-color: rgba(0, 0, 0, 0);
}
.dialog {
  max-height: 100%;
  box-sizing: border-box;
  position: relative;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  background-color: white;
  color: #252525;
  border-radius: 0.5rem;
  border: 1px solid #efefef;
  padding: 1.5rem 1rem 1rem;
  transform: scale(0, 0);
}
.dialog .content {
  max-height: 100%;
  overflow-y: auto;
}
.dialog a {
  color: #fa293d;
  text-decoration: none;
}
.dialog a:active,
.dialog a:focus {
  text-decoration: underline;
  outline: 0;
}
.dialog p {
  font-size: 0.9em;
  text-align: center;
}
.dialog p.error {
  color: #fa293d;
}
.dialog div.input {
  border: 1px solid #efefef;
  border-radius: 0.25rem;
}
.dialog div.input input {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0.25rem;
  outline: 0;
  margin: 0;
  border: 0;
  font-size: 1rem;
  border-radius: 0.25rem;
}
.dialog div.input.error {
  border: 1px solid #fa293d;
}
.dialog div.input:focus-within,
.dialog div.input.error:focus-within {
  border: 1px solid #888888;
}
.dialog button[disabled],
.dialog button.facebook[disabled],
.dialog button.text[disabled] {
  background-color: #888888;
  border: 1px solid #888888;
  color: #fafafa;
}
.dialog button[disabled]:active {
  background-color: #888888 !important;
  border: 1px solid #888888 !important;
  color: #fafafa !important;
}
.dialog button.text {
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  outline: none;
  background-color: #efefef;
  color: #888888;
  border-radius: 0.25rem;
  border: 1px solid transparent;
  padding: 0.5rem;
  position: relative;
  box-sizing: border-box;
  display: block;
  width: 100%;
}
.dialog button.text:active {
  border: 1px solid #888888;
  background-color: #fafafa;
}
.dialog button.text.red {
  background-color: #fa293d;
  color: white;
}
.dialog button > * {
  vertical-align: middle;
  margin: 0 0.25rem;
}
.dialog button .icon {
  width: auto;
  height: 1.2rem;
}
.dialog button.facebook {
  background-color: #3897f0;
  border: 1px solid #3897f0;
  color: white;
  width: 100%;
}
.dialog button.facebook:active {
  background-color: #4CA9FF;
}
.dialog button.airgames {
  background-color: #32d3f0;
  border: 1px solid #32d3f0;
  color: #333333;
}
.dialog button.airgames:active {
  background-color: #4cdef8;
}
.dialog div.divider {
  margin: 0.5rem 0;
  border-bottom: 1px solid #efefef;
}
.dialog #close {
  width: 1.25rem;
  height: 1.25rem;
  padding: 0.125rem;
  display: inline-block;
  background-color: transparent;
  border: none;
  position: absolute;
  right: -0.125rem;
  top: -0.125rem;
}
.dialog #close img {
  width: 100%;
  height: 100%;
}
.dialog #close:focus {
  outline: 2px solid #fa293d;
}
.dialog.open {
  animation: dialog-open 0.25s;
  -webkit-animation: dialog-open 0.25s;
  -moz-animation: dialog-open 0.25s;
  -o-animation: dialog-open 0.25s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: fowrads;
  -moz-animation-fill-mode: fowrads;
  -o-animation-fill-mode: fowrads;
}
#billing .dialog {
  font-size: 1.1em;
  width: 20rem;
  width: 80%;
  max-width: 600px;
  text-align: center;
  overflow: hidden;
}
#billing .dialog .logo {
  background-color: #32d3f0;
  color: #016d8c;
  margin: -1.5rem -1rem 0;
  padding: 0.25rem;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
#billing .dialog .logo img {
  height: 2em;
  width: auto;
}
#billing .dialog .error {
  color: #fa293d;
}
#billing .dialog a {
  font-size: 1.2rem;
  outline: none;
}
#login .dialog {
  width: 15rem;
  max-width: 60%;
}
#login .dialog .section {
  text-align: center;
}
#login .dialog .section > * {
  margin-bottom: 0.25rem;
}
#login .dialog .logo {
  width: 100%;
}
#login .dialog .or {
  margin: 0.25rem 0;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}
#login .dialog .or div:nth-child(2n+1) {
  flex-grow: 1;
  box-flex: 1;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  height: 1px;
  border-bottom: 1px solid #efefef;
}
#login .dialog .or div:nth-child(2) {
  margin: 0 1rem;
}
#pinlogin .dialog {
  width: 25rem;
  max-width: 80%;
}
#pinlogin .dialog #pin_list {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
#pinlogin .dialog #pin_list > * {
  min-width: 2rem;
  min-height: 2rem;
  max-width: 2rem;
  max-height: 2rem;
  margin: 0.5rem 0.25rem 1rem;
}
#pinlogin .dialog #pin_list input {
  text-align: center;
}
#newsletter .dialog {
  width: 15rem;
  max-width: 60%;
}
#newsletter .dialog .logo {
  width: 100%;
}
#newpass .dialog {
  width: 15rem;
  max-width: 60%;
}
#info .dialog {
  width: 10rem;
  max-width: 50%;
  font-size: 1.1em;
}
@keyframes dialog-open {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.97);
  }
  90% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes dialog-open {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.97);
  }
  90% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
@-moz-keyframes dialog-open {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.97);
  }
  90% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
@-o-keyframes dialog-open {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.97);
  }
  90% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
@font-face {
  font-family: "Sanchez";
  src: url("../fonts/sanchez.woff");
}
@font-face {
  font-family: roboto-regular;
  src: url(../fonts/Roboto-Regular.ttf) format("truetype");
}
@font-face {
  font-family: roboto-medium;
  src: url(../fonts/Roboto-Medium.ttf) format("truetype");
}
@font-face {
  font-family: roboto-bold;
  src: url(../fonts/Roboto-Bold.ttf) format("truetype");
}
@font-face {
  font-family: roboto-thin;
  src: url(../fonts/Roboto-Thin.ttf) format("truetype");
}
:root a {
  text-decoration: none;
  color: inherit;
}
:root a:visited {
  color: inherit;
}
body {
  overflow-y: auto;
  margin: 0;
  font-family: Helvetica;
  line-height: 1.4;
  background: linear-gradient(0deg, #8ed5fd 0%, #a489fd 100%);
  color: #9c01fd;
  min-height: 100vh;
}
#header {
  padding: 0.5rem 1rem;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}
#header .logo {
  width: 2rem;
  height: 2rem;
  background: url(/gc/sm/static/images/games/logo.png) no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 0.5rem;
}
#header h1 {
  flex-grow: 1;
  box-flex: 1;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  font-family: sanchez;
  color: white;
  margin: 0;
  font-size: 1.1rem;
}
#header button.profile {
  border-radius: 50%;
  -webkit-appearance: none;
  border: none;
  width: 2rem;
  height: 2rem;
  background: url(../images/kids/profile.png) no-repeat;
  background-size: 1.5rem 1.5rem;
  background-position: center;
  transition: background-color 0.25s linear;
}
#header button.profile:active {
  background-color: rgba(255, 255, 255, 0.5);
}
[dir=rtl] #header .logo {
  margin-left: 0.5rem;
  margin-right: 0;
}
#games {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 1rem;
  padding: 0 1rem;
}
#games a {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1rem;
}
#games a:hover,
#games a:active {
  background-color: #c5f6ff !important;
}
#games .game {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  grid-gap: 0.5rem;
}
#games .logo {
  min-width: 2.5rem;
  min-height: 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#games .info .title_info {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}
#games .info .title {
  flex-grow: 1;
  box-flex: 1;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  font-family: roboto-bold;
  font-size: 1.1rem;
  font-weight: 700;
  color: #9c01fd;
}
#games .info .desc {
  transition: max-height 0.5s ease-in-out;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #888;
  font-size: 0.9rem;
  font-family: roboto-regular;
  max-height: calc(1.4rem * 0.9);
}
#games .selected .info .desc {
  max-height: 10rem;
  -webkit-line-clamp: 10;
}
#footer {
  padding: 1rem;
  color: white;
}
#footer > * {
  text-align: center;
  margin-bottom: 0.25rem;
}
#footer a {
  color: white;
}
#footer a:active,
#footer a:hover {
  text-decoration: underline;
  color: #9c01fd;
}
#nav {
  padding: 1rem;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
#nav > * {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  min-height: 2rem;
  border-radius: 0.25rem;
  color: #9c01fd;
  background-color: white;
  margin: 0.25rem;
}
#nav a:active,
#nav a:hover {
  background-color: hsl(108, 85%, 72%);
  color: white;
}
#nav .selected {
  background-color: #1eda40;
  color: white;
}
.search {
  padding: 1rem;
}
.search .input {
  border: 1px solid transparent;
  height: 2rem;
  max-width: 800px;
  margin: auto;
}
.search .input:has(input.active) {
  border: 1px solid #9c01fd;
}
.arrow {
  margin: 0 1rem;
  width: 1rem;
  height: 1rem;
  background-size: contain;
  background-position: center;
  background-image: url(/kids/v1/images/futbal/Chervon-Down.svg);
  transition: transform 0.5s ease-in-out;
}
.selected .arrow {
  transform: rotateZ(180deg);
}
.empty {
  padding: 1rem;
  background-color: white;
  border-radius: 0.5rem;
  display: grid;
  place-content: center;
}
@media (min-width: 800px) {
  #games {
    padding: 0;
    grid-row-gap: 0;
  }
  #games a {
    margin: 0;
    padding: 1rem 2rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(220, 220, 220);
  }
  #games a:nth-child(2n) {
    background-color: rgba(240, 240, 240);
  }
  #games .empty {
    border-radius: 0;
    padding: 1rem 2rem;
  }
  #games .logo {
    place-self: center;
  }
  #games .info {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
  }
  #games .info .title_info {
    width: 15rem;
    min-width: 15rem;
    overflow: hidden;
  }
  #games .info .title_info .arrow {
    display: none;
  }
  #games .info .desc {
    -webkit-line-clamp: 2;
    max-height: initial;
  }
}

