@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, Helvetica Neue, -apple-system, Arial, sans-serif;
  border: none;
  outline: none;
  background: none;
  text-decoration: none;
  list-style: none;
}

@font-face {
  font-family: "Christabelle";
  src: url(../fonts/Christabelle-rgz77.woff);
}
body {
  background-color: #202227;
  
}

#main_page {
  position: static !important;
}

header {
  z-index: 99 !important;
}
.match-game-section {
  background-color: #202227;
}
.match-game-section .match-game-area {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 2rem;
}
.match-game-section .match-game-area .left-area {
  max-width: 18rem;
  width: 100%;
  position: sticky;
  top: 8.2rem;
}
.match-game-section .match-game-area .left-area .likeme-menu-button {
  height: 3rem;
  width: 8rem;
  border-radius: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  display: none;
  font-size: 1.1rem;
}
.match-game-section .match-game-area .left-area .likeme-menu-button:hover {
  background-color: rgba(255, 255, 255, 0.07);
}
.match-game-section .match-game-area .left-area .like-me {
  padding: 1rem;
  border-radius: 0.3rem;
  background-color: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
}
.match-game-section .match-game-area .left-area .like-me .like-me-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.match-game-section .match-game-area .left-area .like-me .like-me-title .name {
  font-size: 1.15rem;
  font-weight: 500;
}
.match-game-section .match-game-area .left-area .like-me .like-me-area li {
  border-radius: 0.3rem;
  margin-bottom: 0.3rem;
  position: relative;
}
.match-game-section .match-game-area .left-area .like-me .like-me-area li .badge {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.65rem;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  z-index: 2;
}
.match-game-section .match-game-area .left-area .like-me .like-me-area li a {
  text-decoration: none !important;
}
.match-game-section .match-game-area .left-area .like-me .like-me-area li:last-child {
  margin-bottom: 0;
}
.match-game-section .match-game-area .left-area .like-me .like-me-area li button {
  color: #FFFFFF;
  padding: 0.8rem 0.5rem;
  font-size: 0.875rem;
  cursor: pointer;
  border-radius: 0.3rem;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 0.8rem;
}
.match-game-section .match-game-area .left-area .like-me .like-me-area li button:hover {
  background-color: rgba(255, 255, 255, 0.06);
}
.match-game-section .match-game-area .left-area .like-me .like-me-area li button.active {
  background-color: rgba(255, 255, 255, 0.06);
}
.match-game-section .match-game-area .left-area .like-me .like-me-area li button i {
  font-size: 1.1rem;
  height: 1.3rem;
  width: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.match-game-section .match-game-area .right-area {
  max-width: calc(100% - 18rem);
  width: 100%;
}
.match-game-section .match-game-area .right-area .match-games-area {
  border-radius: 0.8rem;
  color: #FFFFFF;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 2.5rem;
  height: calc(100svh - 9rem);
  margin: 0;
  font-family: Arial, sans-serif;
  overflow: hidden;
  padding-top: 2.5rem;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-container {
  position: relative;
  width: 300px;
  height: 400px;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card, .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: transform 0.3s ease-in-out;
  cursor: grab;
  user-select: none;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card::after, .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0) 60%, rgba(20, 20, 20, 0.9) 100%);
  border-radius: 0.4rem;
  transition: 0.4s ease;
  z-index: 1;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card:first-child, .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end:first-child {
  box-shadow: 0 4px 8px rgba(20, 20, 20, 0.1);
  z-index: 10;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card:last-child, .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end:last-child {
  transform: translateY(10px);
  opacity: 1;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card .game-tag, .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end .game-tag {
  position: absolute;
  top: 1.5rem;
  color: #FFFFFF;
  padding: 0.1rem 0.2rem;
  border: 3px solid #FFFFFF;
  font-size: 1.3rem;
  font-weight: 500;
  border-radius: 0.4rem;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s cubic-bezier(0.15, 0.2, 0.1, 1.2);
  text-transform: uppercase;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card .game-tag.active, .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end .game-tag.active {
  opacity: 1;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card .game-tag.liked, .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end .game-tag.liked {
  background-color: #28a745;
  transform: rotate(-30deg);
  left: 1rem;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card .game-tag.skipped, .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end .game-tag.skipped {
  background-color: #dc3545;
  transform: rotate(30deg);
  right: 1rem;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card img, .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card .content, .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 2;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card .content a {
  text-decoration: none;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card .content a:hover h2{
  color: #38AEFD;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card .content h2, .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end .content h2 {
  margin: 0;
  font-size: 1.2rem;
  color: #FFFFFF;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card .content h2 .age, .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end .content h2 .age {
  font-size: 0.8rem;
  font-weight: 300;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card .content .username, .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end .content .username {
  font-size: 0.8rem;
  color: #FFFFFF;
  font-weight: 300;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end {
  background-color: rgba(255, 255, 255, 0.07);
  cursor: default;
  user-select: auto;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end::after {
  display: none;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end .content {
  top: 50%;
  left: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end .content h2 {
  font-size: 1.5rem;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end .content p {
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 300;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-end .content .reload {
  height: 3rem;
  width: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 3rem;
  cursor: pointer;
  font-size: 1rem;
  color: #FFFFFF;
  background-color: #28a745;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .buttons-group {
  position: relative;
  z-index: 50;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .buttons-group button {
  height: 4rem;
  width: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .buttons-group #likeBtn {
  color: #CB3288;
  border: 1px solid #CB3288;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .buttons-group #likeBtn.active {
  background-color: #CB3288;
  color: #FFFFFF;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .buttons-group #dislikeBtn {
  color: #dc3545;
  border: 1px solid #dc3545;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .buttons-group #dislikeBtn.active {
  background-color: #dc3545;
  color: #FFFFFF;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .buttons-group #reload {
  color: #28a745;
  border: 1px solid #28a745;
}
.match-game-section .match-game-area .right-area .match-games-area .match-games-list .buttons-group #reload.active {
  background-color: #28a745;
  color: #FFFFFF;
}

.matched-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  user-select: none;
}
.matched-popup.active {
  pointer-events: all;
  user-select: auto;
}
.matched-popup.active .matched-popup-background {
  opacity: 1;
}
.matched-popup.active .matched-popup-container {
  opacity: 1;
}
.matched-popup.active .matched-popup-container .matched-popup-content .matched-popup-title {
  opacity: 1;
}
.matched-popup.active .matched-popup-container .matched-popup-content .content {
  opacity: 1;
  transform: translateY(0);
}
.matched-popup.active .matched-popup-container .matched-popup-content .button-group {
  opacity: 1;
  transform: translateY(0);
}
.matched-popup.active .matched-popup-container .matched-popup-content .matched-images .icon {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(15deg) scale(1);
}
.matched-popup.active .matched-popup-container .matched-popup-content .matched-images .matched-user-image {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-10deg) scale(1);
}
.matched-popup.active .matched-popup-container .matched-popup-content .matched-images .your-image {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(10deg) scale(1);
}
.matched-popup .matched-popup-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  transition: 0.4s;
  opacity: 0;
}
.matched-popup .matched-popup-container {
  height: 100%;
  width: 100%;
  max-width: 700px;
  max-height: 94svh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.4s;
  position: relative;
  border-radius: 1rem;
  z-index: 2;
}
.matched-popup .matched-popup-container .matched-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #fff;
  color: #141414;
  font-size: 1rem;
}
.matched-popup .matched-popup-container .matched-popup-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem 1rem;
}
.matched-popup .matched-popup-container .matched-popup-content .matched-popup-title {
  font-size: 2.5rem;
  color: #141414;
  font-weight: 500;
  font-family: "Christabelle", sans-serif;
  opacity: 0;
  transition: 0.4s;
  transition-delay: 0.3s;
  margin: 0;
}
.matched-popup .matched-popup-container .matched-popup-content .matched-images {
  position: relative;
  width: 400px;
  height: 380px;
  margin-top: 2.7rem;
  margin-bottom: 2.7rem;
  transform: scale(1.3);
}
.matched-popup .matched-popup-container .matched-popup-content .matched-images .matched-user-image, .matched-popup .matched-popup-container .matched-popup-content .matched-images .your-image {
  position: absolute;
  height: 210px;
  width: 155px;
  overflow: hidden;
  border-radius: 1rem;
  transition: 0.4s;
  transition-delay: 0.5s;
  opacity: 0;
}
.matched-popup .matched-popup-container .matched-popup-content .matched-images .matched-user-image img, .matched-popup .matched-popup-container .matched-popup-content .matched-images .your-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.matched-popup .matched-popup-container .matched-popup-content .matched-images .matched-user-image {
  top: 42%;
  left: 32%;
  transform: translate(-50%, -50%) rotate(-10deg) scale(0.6);
  z-index: 1;
}
.matched-popup .matched-popup-container .matched-popup-content .matched-images .your-image {
  top: 58%;
  left: 68%;
  transform: translate(-50%, -50%) rotate(10deg) scale(0.6);
  z-index: 2;
}
.matched-popup .matched-popup-container .matched-popup-content .matched-images .your-image .matched-name,
.matched-popup .matched-popup-container .matched-popup-content .matched-images .matched-user-image .matched-name {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  width: 100%;
  padding: 0.5rem 2.2rem 0.5rem 0.7rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-align: left;
  background-color: rgba(212, 35, 134, 0.6);
  backdrop-filter: blur(10px);
  color: #ffffff;
  margin: 0;
}
.matched-popup .matched-popup-container .matched-popup-content .matched-images .icon {
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%) rotate(15deg) scale(3);
  color: #FFFFFF;
  height: 3rem;
  width: 3rem;
  background-color: #FFFFFF;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(20, 20, 20, 0.3);
  color: #CB3288;
  z-index: 3;
  transition: 0.4s;
  transition-delay: 1s;
  opacity: 0;
}
.matched-popup .matched-popup-container .matched-popup-content .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  font-size: 0.8rem;
  transform: translateY(2rem);
  transition: 0.4s;
  transition-delay: 1.2s;
  opacity: 0;
}
.matched-popup .matched-popup-container .matched-popup-content .content h2 {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
  color: #000000;
}
.matched-popup .matched-popup-container .matched-popup-content .content h2 strong {
  font-weight: 600;
}
.matched-popup .matched-popup-container .matched-popup-content .button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transform: translateY(2rem);
  transition: 0.4s;
  transition-delay: 1.5s;
  opacity: 0;
}
.matched-popup .matched-popup-container .matched-popup-content .button-group button, 
.matched-popup .matched-popup-container .matched-popup-content .button-group a {
  padding: 0.7rem 1.2rem;
  border-radius: 0.3rem;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.4s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
}
.matched-popup .matched-popup-container .matched-popup-content .button-group button:hover,
.matched-popup .matched-popup-container .matched-popup-content .button-group a:hover {
  transform: translateY(-4px) scale(1.02);
}
.matched-popup .matched-popup-container .matched-popup-content .button-group a.start-conversation {
  background-color: #CB3288;
  color: #FFFFFF;
}
.matched-popup .matched-popup-container .matched-popup-content .button-group a.start-conversation:hover {
  box-shadow: 0 5px 7px rgba(20, 20, 20, 0.4);
}
.matched-popup .matched-popup-container .matched-popup-content .button-group button.keep-playing {
  background-color: #FFFFFF;
  color: #141414;
}
.matched-popup .matched-popup-container .matched-popup-content .button-group button.keep-playing:hover {
  box-shadow: 0 5px 7px rgba(20, 20, 20, 0.2);
}
@supports (-webkit-touch-callout: none) {
  .matched-popup .matched-popup-container .matched-popup-content .button-group button,
  .matched-popup .matched-popup-container .matched-popup-content .button-group a {
    cursor: default !important;
  }
}

@media only screen and (max-height: 660px) {
  .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-container {
    width: 200px;
    height: 300px;
  }
  .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card .content h2 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
  .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card .content h2 .age {
    font-size: 0.6rem;
  }
  .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card .content .username {
    font-size: 0.6rem;
  }
  .matched-popup .matched-popup-container .matched-popup-content {
    padding-top: 3rem;
  }
  .matched-popup .matched-popup-container .matched-popup-content .matched-popup-title {
    font-size: 1.7rem;
  }
  .matched-popup .matched-popup-container .matched-popup-content .matched-images {
    transform: scale(1);
    margin: 0;
    margin-top: 1rem;
    height: 300px;
  }
}
@media only screen and (max-width: 1200px) {
  .match-game-section .match-game-area .right-area .match-games-area .match-games-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .match-game-section .match-game-area .left-area {
    max-width: 18rem;
  }
  .match-game-section .match-game-area .left-area .like-me {
    padding: 1rem;
  }
  .match-game-section .match-game-area .left-area .like-me .like-me-title {
    margin-bottom: 1rem;
  }
  .match-game-section .match-game-area .left-area .like-me .like-me-title .name {
    font-size: 1rem;
  }
  .match-game-section .match-game-area .right-area {
    max-width: calc(100% - 18rem);
  }
  .match-game-section .match-game-area .right-area .match-games-area .match-games-list {
    grid-template-columns: 1fr 1fr;
  }
  .match-game-section .match-game-area .right-area .match-games-area .match-games-list .match-games-item .match-games-details {
    gap: 0.6rem;
  }
  .match-game-section .match-game-area .right-area .match-games-area .match-games-list .match-games-item .match-games-image {
    height: 12rem;
  }
  .match-game-section .match-game-area .right-area .match-games-area .match-games-list .match-games-item .match-games-info {
    width: 100%;
  }
  .match-game-section .match-game-area .right-area .match-games-area .match-games-list .match-games-item .match-games-info .name {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }
  .match-game-section .match-game-area .right-area .match-games-area .match-games-list .match-games-item .match-games-info .match-game-back {
    font-size: 0.7rem;
  }
  .match-game-section .match-game-area .right-area .match-games-area .match-games-list .match-games-item .match-games-info .date {
    font-size: 0.65rem;
  }
  .match-game-section .match-game-area .right-area .match-games-area .match-games-list .match-games-item .remove-button {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 767px) {
  header nav {
    display: none !important;
  }
  .match-game-section {
    padding-bottom: 5rem;
  }
  .match-game-section .match-game-area {
    flex-direction: column;
    gap: 0.5rem;
  }
  .match-game-section .match-game-area .left-area {
    position: relative;
    top: 0;
    min-width: 100%;
    z-index: 50;
    padding: 1rem;
  }
  .match-game-section .match-game-area .left-area .likeme-menu-button {
    display: flex;
  }
  .match-game-section .match-game-area .left-area .like-me {
    position: absolute;
    left: 1rem;
    top: 5rem;
    min-width: 80%;
    width: 80%;
    background-color: #2d2f34;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
  }
  .match-game-section .match-game-area .left-area .like-me.active {
    opacity: 1;
    pointer-events: all;
  }
  .match-game-section .match-game-area .right-area {
    max-width: 100%;
  }
  .matched-popup .matched-popup-container .matched-popup-content .matched-popup-title {
    font-size: 2.2rem;
  }
  .matched-popup .matched-popup-container .matched-popup-content .matched-images {
    transform: scale(1.2);
  }
}
@media only screen and (max-width: 575px) {
  header nav {
    display: none !important;
  }
  .match-game-section .wrapper {
    padding: 0;
    min-width: 100%;
    width: 100%;
  }
  .match-game-section .match-game-area {
    padding: 0;
  }
  .match-game-section .match-game-area .left-area {
    padding: 0.5rem 1rem;
  }
  .match-game-section .match-game-area .left-area .likeme-menu-button {
    font-size: 0.9rem;
    height: 2.7rem;
    width: 6.3rem;
  }
  .match-game-section .match-game-area .left-area .like-me {
    top: 3.7rem;
  }
  .match-game-section .match-game-area .right-area .match-games-area {
    padding: 0.5rem 0 1.5rem;
    padding-top: 0;
  }
  .match-game-section .match-game-area .right-area .match-games-area .match-games-title {
    font-size: 1rem;
  }
  .match-game-section .match-game-area .right-area .match-games-area .match-games-list {
    height: calc(100svh - 9rem);
    justify-content: center;
    padding-bottom: 1rem;
    padding-top: 0;
  }
  .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-container {
    width: 270px;
    height: 380px;
  }
  .matched-popup .matched-popup-container {
    max-height: 90svh;
  }
  .matched-popup .matched-popup-container .matched-popup-content {
    padding-top: 4rem;
  }
  .matched-popup .matched-popup-container .matched-popup-content .matched-popup-title {
    font-size: 1.7rem;
  }
  .matched-popup .matched-popup-container .matched-popup-content .matched-images {
    transform: scale(1);
    margin: 0;
  }
  .matched-popup .matched-popup-container .matched-popup-content .content {
    width: 100%;
  }
  .matched-popup .matched-popup-container .matched-popup-content .button-group {
    flex-direction: column;
    width: 100%;
  }
  .matched-popup .matched-popup-container .matched-popup-content .button-group button,
  .matched-popup .matched-popup-container .matched-popup-content .button-group a {
    width: 100%;
  }
  .matched-popup .matched-popup-container .matched-popup-content .button-group button {
    order: 2;
  }
  .matched-popup .matched-popup-container .matched-popup-content .button-group a {
    order: 1;
  }
}
@media (max-width: 340px) {
  .match-game-section .wrapper {
    max-width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */