.lobby-popup-holder {
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 100%;
  padding: 1.2rem 0.6rem 0 0;
  background-color: rgba(22, 24, 26, 0.85);
  border: 0.1rem solid rgba(255, 255, 255, 0.2);
  pointer-events: auto;
  z-index: 1000;
  transition: transform 240ms;
}
[class*="is-web"] .lobby-popup-holder.active {
  transform: translateX(0);
}
[class*="is-mobile"] .lobby-popup-holder.active  {
  transform: translateY(0);
}
[class*="is-web"] .lobby-popup-holder {
  top: 7rem;
  right: 0;
  max-width: 42.6rem;
  max-height: 68rem;
  border-radius: 1.4rem;
  transform: translateX(100%);
}
[class*="is-mobile"] .lobby-popup-holder {
  left: 0;
  bottom: 0;
  max-height: 37rem;
  border-radius: 1.5rem;
  transform: translateY(100%);
}
.lobby-popup-top-row {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  padding: 0 1.2rem;
}
.top-input-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: rgba(52, 52, 56, 0.9);
  border: 0.1rem solid rgba(255, 255, 255, 0.1);
  border-radius: 3rem;
  overflow: hidden;
}
[class*="is-web"] .top-input-wrapper {
  max-width: 27.9rem;
  height: 5rem;
}
[class*="is-mobile"] .top-input-wrapper {
  max-width: 37rem;
  height: 3.8rem;
}
.label-search {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
[class*="is-web"] .label-search {
  gap: 1.8rem;
  padding: 0 0.6rem 0 2.1rem;
}
[class*="is-mobile"] .label-search {
  gap: 1rem;
  padding: 0 0.6rem 0 1.2rem;
}
.lobby-search-icon {
  flex: 0 0 auto;
}
[class*="is-web"] .lobby-search-icon {
  height: 2.3rem;
}
[class*="is-mobile"] .lobby-search-icon {
  height: 1.7rem;
}
.input {
  height: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  font-weight: 500;
  color: #fff;
  vertical-align: center;
}
[class*="is-web"] .input {
  font-size: 1.6rem;
  line-height: 2rem;
}
[class*="is-mobile"] .input {
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.top-icon-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.7rem;
}
[class*="is-web"] .top-icon-cont {
  cursor: pointer;
  width: 5rem;
  height: 5rem;
}
[class*="is-mobile"] .top-icon-cont {
  width: 3.8rem;
  height: 3.8rem;
}
.close-icon {
  display: block;
  height: 1.7rem;
}
.lobby-popup-main-wrp {
  flex: 1;
  min-width: 0;
  min-height: 0;
  padding: 0 2px 0 1.2rem;
  overflow-y: auto;
  overflow-x: hidden;
}
[class*="is-web"] .lobby-popup-main-wrp {
  border-top: 1.2rem solid transparent;
}
[class*="is-mobile"] .lobby-popup-main-wrp {
  border-top: 1rem solid transparent;
}
.main-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  padding-bottom: 9rem;
}
.main-cards-wrapper.no-data {
  display: block;
}
[class*="is-web"] .main-cards-wrapper {
  gap: 0.5rem;
}
[class*="is-mobile"] .main-cards-wrapper {
  gap: 1rem;
}
.main-card {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  padding-top: 70.45%; /* aspect-ratio: 44 / 31; (31 / 44 * 100) */
}
.main-card:hover .hovered-container, .main-card:active .hovered-container {
  opacity: 1;
}
[class*="is-web"] .main-card {
  border-radius: 1rem;
}
[class*="is-mobile"] .main-card {
  border-radius: 0.8rem;
}
.main-card .skeleton-wrapper {
  position: absolute;
  top: 0;
  left: 0;
}
.hovered-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: background-color 240ms, opacity 240ms;
  opacity: 0;
  padding-top: 9rem;
  cursor: default;
}
.hovered-button {
  min-width: 6rem;
  max-width: 8rem;
  height: 2.2rem;
  padding: 0 0.9rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.3);
  border-radius: 0.3rem;
  background-color: transparent;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2rem;
  outline: none;
  transition: background-color 250ms;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.hovered-button.active {
  background-color: rgba(66, 143, 52, 1);
}
.bottom-shadow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(180deg, rgba(31, 31, 31, 0.3) 0%, #1f1f1f 86%);
  pointer-events: none;
}
[class*="is-web"] .bottom-shadow-row {
  height: 8.4rem;
  border-radius: 0 0 1.4rem 1.4rem;
}
[class*="is-mobile"] .bottom-shadow-row {
  height: 8.2rem;
  border-radius: 0 0 1.5rem 1.5rem;
}
.button-case {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid rgba(255, 255, 255, 0.3);
  border-radius: 0.6rem;
  overflow: hidden;
  pointer-events: auto;
}
[class*="is-web"] .button-case {
  min-width: 11.4rem;
  height: 4.8rem;
}
[class*="is-mobile"] .button-case {
  min-width: 13.3rem;
  height: 4.7rem;
}
.footer-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  font-size: 1.7rem;
  line-height: 2rem;
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
  outline-style: none;
  border: none;
  transform: translate3d(0, 0, 0);
}
[class*="is-web"] .footer-button {
  padding: 0 0.5rem;
  cursor: pointer;
}
[class*="is-mobile"] .footer-button {
  padding: 0 1.5rem;
}
.footer-button:active {
  transform: scale(0.99);
}
.card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.skeleton-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.skeleton-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(83, 83, 87, 1) 50%, rgba(255, 255, 255, 0.5) 100%);
  background-size: 200%;
  animation-name: skeletonMow;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  pointer-events: none;
}
@keyframes skeletonMow {
  0% {
    background-position: 200%;
 }
  50% {
    background-position: 100%;
 }
  100% {
    background-position: 0;
 }
}
