@font-face {
  font-family: 'GeekbleMalang';
  font-weight: 400;
  src: url('https://cdn.banggooso.com/assets/images/game215/font/GeekbleMalang2TTF.ttf');
}

@font-face {
  font-family: 'GeekbleMalang';
  font-weight: 700;
  src: url('https://cdn.banggooso.com/assets/images/game215/font/GeekbleMalang2TTF.ttf');
}

@font-face {
  font-family: 'EliceDigitalBaeum';
  font-style: normal;
  font-weight: 400;
  src: url('https://cdn.banggooso.com/assets/images/game215/font/EliceDigitalBaeum_Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'EliceDigitalBaeum';
  font-style: normal;
  font-weight: 700;
  src: url('https://cdn.banggooso.com/assets/images/game215/font/EliceDigitalBaeum_Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'DarumadropOne';
  src: url('https://cdn.banggooso.com/assets/images/game215/font/DarumadropOne-Regular.ttf');
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 500;
  src: url('https://cdn.banggooso.com/assets/fonts/PretendardVariable.woff2') format('woff2');
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 600;
  src: url('https://cdn.banggooso.com/assets/fonts/PretendardVariable.woff2') format('woff2');
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 700;
  src: url('https://cdn.banggooso.com/assets/fonts/PretendardVariable.woff2') format('woff2');
}

@font-face {
  font-family: 'GangwonEdu_OTFBoldA';
  font-style: normal;
  font-weight: normal;
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/GangwonEdu_OTFBoldA.woff') format('woff');
}

@font-face {
  font-family: 'SUIT-Bold';
  src: url('https://cdn.banggooso.com/assets/images/game215/font/SUIT-Bold.ttf');
}
@font-face {
  font-family: 'SUIT-SemiBold';
  src: url('https://cdn.banggooso.com/assets/images/game215/font/SUIT-SemiBold.ttf');
}

@font-face {
  font-family: 'GongGothicMedium';
  font-style: normal;
  font-weight: normal;
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10@1.0/GongGothicMedium.woff') format('woff');
}

:root {
  --easing: cubic-bezier(0.7, 0, 0.3, 1);
  --duration: 0.5s;

  --background-color: #e3f6ff;
  --main-color: #2d407e;
  --sub-color: #46568a;
  --paragraph-highlight-color: #48547e;
  --paragraph-color: #575f7b;
  --paragraph-sub-color: #6c779e;
}

/* 기본적인 CSS 리셋 및 개발 편의 설정 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

html,
body {
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-family: 'GeekbleMalang';
  font-size: 16px;
  overscroll-behavior: none;
}

@media (max-width: 500px) {
  html,
  body {
    font-size: 3.2vw;
  }
}

/* global */

.pointer {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.game-wrapper .game-intro {
  padding: 0;
  background-color: #cbe7ff;
}

.game-wrapper .app-header .app-logo {
  background-size: 85%;
}

.game-wrapper .app-header .app-header-btn.back {
  background-image: url('https://cdn.banggooso.com/assets/images/icons/back-arrow-b.png');
  background-size: 30%;
}

.game-wrapper.basic .game-wrap {
  position: relative;
}

.game-wrapper .app-header {
  height: 4.063rem;
  border: none;
}

.game-wrapper .app-header.page {
  position: relative;
  height: 4.082rem;
}

/* 인트로 */
.banner-text {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 2.875rem;

  font-family: 'EliceDigitalBaeum';
  font-size: 1.313rem;
  font-weight: 400;
  line-height: 1.875rem;
  color: var(--main-color);
  letter-spacing: 0.01rem;
}

.top-winner-banner {
  width: 100%;
  background-color: #e3f6ff;
}

.intro-bg {
  background-color: #cbe7ff;
}

.intro-form-container {
  padding: 1.2rem 1.5rem 0 1.5rem;
  background-image: url(https://cdn.banggooso.com/assets/images/game276/intro/intro-deco-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.user-form {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.location-selector {
  all: unset;
}

.location-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 3.75rem;
  outline: none;
  background-color: #ffffff;
  background-image: url(https://cdn.banggooso.com/assets/images/game215/images/arrow_down.png);
  background-repeat: no-repeat;
  background-position: 95% center;
  background-size: 12%;
  font-family: 'EliceDigitalBaeum';
  font-size: 1.375rem;
  color: #989898;
  text-align: center;
  border-radius: 3.125rem;
  -webkit-text-align-last: center; /* 구형 WebKit 브라우저용 */
  text-align-last: center; /* 표준 속성 */
}

.location-selector:disabled {
  background-color: var(--background-color);
}

.nickname-input {
  width: 100%;
  height: 3.75rem;
  outline: none;
  background-color: #ffffff;
  font-family: 'EliceDigitalBaeum';
  font-size: 1.375rem;
  font-weight: 400;
  text-align: center;
  border-radius: 3.125rem;
}

.nickname-input::placeholder {
  color: #a9aaaa;
}

.location-container {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.intro-tip-text {
  font-family: 'EliceDigitalBaeum';
  font-size: 1rem;
  font-weight: 700;
  color: #7f87a1;
  text-align: center;
  letter-spacing: -0.02rem;
}

.intro-tip-text strong {
  font-weight: 900;
  color: var(--paragraph-highlight-color);
}

.bottom-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  background-color: #dbc18f;
}

.bottom-container .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.game-intro .btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  margin-top: 1rem;
}

.game-intro .btn-game-start {
  height: 4.75rem;
  padding-bottom: 0.6rem;

  /* 기본 게임 시작 버튼 스타일 reset */
  border: none;
  box-shadow: none;
  vertical-align: bottom;
  background-color: var(--main-color);
  background-image: url(https://cdn.banggooso.com/assets/images/game276/intro/intro-start-btn.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  font-family: 'GeekbleMalang';
  font-size: 1.87rem;
  color: white;
}

.game-intro .btn-game-start:active {
  background-color: #f5f4f2;
  color: #a9aaaa;
}

/* game status */

.game-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.2rem;
}

.guest-count {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 50%;

  font-family: 'EliceDigitalBaeum';
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;

  color: #48547e;
  text-align: center;
}

.guest-count:nth-child(1) {
  border-right: solid 0.125rem #77a8e0;
}

.guest-count p {
  white-space: nowrap;
}

.guest-count dt {
  font-family: 'GeekbleMalang';
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 2.125rem; /* 121.429% */
  color: #85b5dd;
  text-align: center;
}

.game-explanation-bubble-img {
  width: 100%;
  padding: 0 2rem;
}

.intro-divider {
  width: 100%;
  padding: 0 1rem;
}

/* 인트로 랭킹 */

.intro-game-ranking-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;

  padding-top: 1.75rem;
  padding-bottom: 2.1rem;
  font-family: 'GeekbleMalang';
  font-size: 1.75rem;
  font-weight: 400;
  color: #2d407e;
  letter-spacing: -0.07rem;
}

.intro-game-ranking-container h4 {
  margin-bottom: 2.1rem;
  font-family: 'GeekbleMalang';
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--main-color);
  text-align: center;
}

.intro-rank-list {
  display: flex;
  gap: 1rem;
  flex-direction: row;
}

.intro-ranking-box {
  flex: 1;
  min-width: 13rem;
  min-height: 14.1rem;
  padding: 1.5rem 1rem 2.9rem 1rem;
  background: url(https://cdn.banggooso.com/assets/images/game276/intro/intro-ranking-bg.png) no-repeat center/cover;
}

.intro-ranking-title {
  margin-bottom: 1.3rem;
  font-family: 'GeekbleMalang';
  font-size: 1.75rem;
  color: var(--main-color);
  text-align: center;
}

.intro-ranking-box li {
  display: flex;
  gap: 0.5rem;
  font-family: 'EliceDigitalBaeum';
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--paragraph-color);
}

.intro-ranking-box .rank-name {
  flex: 1;
  overflow: hidden;
  font-weight: 700;
  color: var(--paragraph-highlight-color);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.intro-descriptions {
  padding-bottom: 11rem;
  font-family: 'EliceDigitalBaeum';
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--paragraph-color);
  text-align: center;
  letter-spacing: 0.01rem; /* 글자 사이 간격 조정 */
}

/* 스토리 */

.story_1 {
  position: relative;
  width: 100%;
  height: 100%;
  background: url('https://cdn.banggooso.com/assets/images/game276/story/story_1.png') no-repeat center/cover;
}

.story_1 p {
  margin-top: 1.5rem;
  font-family: 'EliceDigitalBaeum';
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.25rem;
  color: #f4bbc280;
  text-align: center;
  letter-spacing: normal;
}

.story_1_image,
.story_2_image,
.story_3_image,
.story_4_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.story_1 .skip,
.story_2 .skip,
.story_3 .skip {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 999;
  width: 5.438rem;
  height: 2.75rem;
}

.story_2 {
  width: 100%;
  height: 100%;
  background-image: url('https://cdn.banggooso.com/assets/images/game276/story/story_2.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.story_3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2rem 0;
  background-image: url('https://cdn.banggooso.com/assets/images/game276/story/story_3.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.story_3 .story_3_dudung {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://cdn.banggooso.com/assets/images/game276/story/story_3_dudung.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.story_3 .story_3_word2 {
  position: absolute;
  display: flex;
  background: url(https://cdn.banggooso.com/assets/images/game276/story/speech-bubble.png) no-repeat center / cover;
  top: calc(39.6875rem - 4.063rem);
  left: 15.175rem;
  width: 19.875rem;
  height: 8.4375rem;
  color: #000;
  text-align: center;
  font-family: 'SUIT-SemiBold';
  font-size: 1.65rem;
  font-weight: 400;
  padding-right: 2.2rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 0.1rem;
}

.story_3_word2 strong {
  color: #575f7b;
  text-align: center;
  font-family: 'EliceDigitalBaeum';
  font-weight: 700;
}

.story_3 .nickname {
  position: absolute;
  top: 75%;
  left: 75%;
  font-family: 'GeekbleMalang';
  font-size: 1.65rem;
  line-height: 2.013rem;
  color: #503c29;
  transform: translate(-75%, -75%);
}

.story_4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 2.5rem 0;
  background-image: url('https://cdn.banggooso.com/assets/images/game276/story/story_4.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.story_4 .mission {
  width: 21.75rem;
  height: 6.25rem;
  background: url('https://cdn.banggooso.com/assets/images/game276/story/mission.png') no-repeat center/cover;
}

.story_4 .bottom {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.story_4 .bottom .message {
  width: 100%;
  height: 9rem;
  background: url('https://cdn.banggooso.com/assets/images/game276/story/message.png') no-repeat center/cover;
}

.story_4 .bottom .message .bold {
  font-family: 'EliceDigitalBaeum';
  font-size: 1.5rem;
  line-height: 2.125rem;
  color: #503c29;
  text-align: center;
}

.story_4 .bottom .message .alert {
  font-family: 'EliceDigitalBaeum';
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.629rem;
  color: #503c29;
  text-align: center;
}

.story_4 .bottom .btn {
  width: 28.125rem;
  height: 4.75rem;
  background-color: transparent;
  background-image: url('https://cdn.banggooso.com/assets/images/game276/story/large_button.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* 게임 모달 */

.dim {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;

  top: 0;
  left: 0;

  z-index: 99999;
  width: 100%;
  height: 100%;
  background-color: #00000099;
}

.game-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.25rem;
  height: 3.125rem;
  background-image: url('https://cdn.banggooso.com/assets/images/game276/game_info_modal/title.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: #7a644f;
  transform: translateY(0.2rem);
}

.game-info-modal-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 4.25rem;
  margin-top: 1.5rem;
  padding-top: 0.5rem;
  background-image: url('https://cdn.banggooso.com/assets/images/game276/game_info_modal/btn.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% 100%;
  font-size: 1.75rem;
  color: #7a644f;
}

/* game info modal */
#gameRuleModal .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 1.75rem;
  height: 1.75rem;
  background: url(https://cdn.banggooso.com/assets/images/game276/result/close-btn.png) no-repeat center/cover;
  pointer-events: auto;
  cursor: pointer;
}

.game-info-modal-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  /* figma img size */
  width: 28.0625rem;
  height: 23.125rem;

  padding: 2.44rem;

  background-image: url('https://cdn.banggooso.com/assets/images/game276/game_info_modal/bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.game-modal-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.game-info-modal-title {
  position: relative;
  width: 100%;
  padding-left: 1.5rem;
  font-family: 'GeekbleMalang';
  font-size: 1.875rem;
  line-height: 2.375rem;
  color: #48547e;
  text-align: start;
}

.game-info-modal-title::before {
  position: absolute;
  top: 0;
  left: 0;
  content: attr(data-step) '. ';
}

.game-info-modal-sub {
  margin-top: 0.75rem;
  font-family: 'EliceDigitalBaeum';
  font-size: 1rem;
  font-weight: 400;
  color: #575f7b;
  text-align: start;
}

.game-info-modal-image {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;

  width: 100%;
  height: 0;
  max-height: 100%;
  object-fit: contain;
}

.swiper-pagination-bullet-active {
  background-color: #7a644f !important;
}

.swiper li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  border-radius: 1rem;
}

/* 게임 구간 */

.game-wrap {
  overflow: auto;
  background-color: #abcdef;
  -webkit-overflow-scrolling: touch;
}

.game-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  height: 100%;
  font-size: 1rem;
}

.game-container > div {
  display: flex;
  flex-direction: column;
}

.game-top {
  width: 100%;
  background-color: var(--background-color);
}

.game-info-container {
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: center;
  margin: 1.5em 0 0.5em 0;
}

#dotlottie-canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.canvas-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #dff1f6;
}

.canvas {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 28rem;
  height: 30em;

  border-style: none solid;
  background: rgba(255, 255, 255, 0.8);
}

.heart-score-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 12.313em;
  height: 3.25em;
  padding: 0 1em;
  background-image: url('https://cdn.banggooso.com/assets/images/game276/game/heart-container.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.heart-score-container img,
.lunch-container img {
  width: 2.25em;
  height: auto;
}

.heart-score {
  font-size: 1.5em;
  color: #664f47;
  text-align: center;
}

.lunch-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 8.813em;
  height: 3.25em;
  padding: 0 1em;
  background-image: url('https://cdn.banggooso.com/assets/images/game276/game/lunch-container.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.lunch-container .text {
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  color: #664f47;
}

.lunch-container .text div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.next {
  display: flex;
  align-items: center;
  flex-direction: column;
  transform: translateY(-0.75em);
}

.next > img {
  position: relative;
  z-index: 999;
  width: 4em;
  height: auto;
  transform: translateY(0.2em);
}

.next-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 5.813em;
  height: 3.625em;
  background-image: url('https://cdn.banggooso.com/assets/images/game276/game/next-container.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.next p {
  position: relative;
  z-index: 99;
  font-family: 'DarumadropOne';
  font-size: 1.5rem;
  line-height: 1.25rem;
  color: white;
  text-shadow: -4px 0px #664f47, 0px 4px #664f47, 4px 0px #664f47, 0px -4px #664f47;
}

.next-container img {
  width: 2.5em;
  height: 2.5em;
  transform: translateY(-0.2em);
}

.game-character-container {
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: center;
}

.game-character-container img {
  width: 6.875em;
  height: auto;
}

.game-character-container .words {
  display: flex;
  align-items: center;
  width: 21.313em;
  height: 5.375em;
  padding-left: 2em;
  background-image: url('https://cdn.banggooso.com/assets/images/game276/game/speech-bubble.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.game-character-speech {
  color: #68798e;
  font-family: 'EliceDigitalBaeum';
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
  letter-spacing: -0.05rem;
  white-space: pre-wrap;
}

.art-board {
  width: 100%;
  height: 1em;
}

.finish-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 7.875em;
}

.finish-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15em;
  height: 2.533em;
  padding-bottom: 0.7rem;
  background-color: transparent;
  background-image: url('https://cdn.banggooso.com/assets/images/game276/game/finish-container.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  font-size: 1.875em;
  cursor: pointer;
}

@media (max-height: 668px) {
  .game-container {
    font-size: 11px;
  }
}

@media (max-height: 568px) {
  .game-container {
    font-size: 9px;
  }
}

.control-button {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 1rem 0;
}

/* 로딩 페이지 */

.loading {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.loading-top {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 25%;
  background-color: var(--background-color);
}

.loading-top p {
  font-family: 'GeekbleMalang';
  font-size: 2.25rem;
  line-height: 2.25rem;
  color: var(--main-color);
  text-align: center;
}

.loading-dots {
  width: 100%;
  text-align: center;
}

.loading-dots--dot {
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #48547e;
  animation: dot-keyframes 1.5s infinite ease-in-out;
  border-radius: 0.625rem;
}

.loading-dots--dot:nth-child(2) {
  animation-delay: 0.5s;
}

.loading-dots--dot:nth-child(3) {
  animation-delay: 1s;
}

@keyframes dot-keyframes {
  0% {
    opacity: 0.4;
    transform: scale(1, 1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2, 1.2);
  }

  100% {
    opacity: 0.4;
    transform: scale(1, 1);
  }
}

.loading-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  flex-direction: column;
  position: relative;
  width: 100%;
  padding: 1.5rem 0;
  background-color: #abcdef;
}

.loading-bottom .loading-text-background {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28.25rem;
  height: 9.625rem;
  background-image: url('https://cdn.banggooso.com/assets/images/game215/images/loading-text-background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: center;
}

.loading-bottom .loading-text-background p {
  font-family: 'EliceDigitalBaeum';
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  color: var(--paragraph-color);
  transform: translateY(-0.5rem);
}

.loading-bottom .loading-text-background p span {
  font-family: 'EliceDigitalBaeum';
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--paragraph-highlight-color);
}

.loading-bottom .background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}

.loading-lunch-container {
  position: relative;
}

.loading-lunch,
.loading-hat {
  width: 15.625rem !important;
  height: 15.625rem;
}

.loading-hat {
  position: absolute;
  top: -1.5rem;
  left: 0;
  animation: closeLunch 1s linear;
}

.loading-bottom-message {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #7197c3;
  font-family: 'EliceDigitalBaeum';
  font-size: 1.25rem;
  color: white;
  text-align: center;
  border-radius: 0.6rem;
}

@keyframes closeLunch {
  from {
    opacity: 0;
    transform: translateY(-2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loading-bottom-message {
  width: 28.25rem !important;
  height: 5.375rem;
}

/* 결과 페이지 */

.result-top {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #f4f1d9;
}

.result-title {
  padding: 1rem 0;
  font-size: 1.75rem;
  color: #503c29;
}

.donation-indicator > img {
  width: 22.75rem;
  height: auto;
}

.result-game-title {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  font-family: 'GeekbleMalang';
  font-size: 1rem;
  font-weight: 400;
  color: #9f8257;
  letter-spacing: normal;
}

.result-description-message {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.145rem;
  color: #c1995d;
  text-align: center;
  letter-spacing: normal;
}

.img-object {
  position: absolute;
  top: 0;
  z-index: 100;
  width: 100%;
}

.thumb-img-text {
  margin: 0.5rem 0;
  font-family: 'Pretendard-500';
  color: #b79b64;
  text-align: center;
}

.landing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28.125rem;
  height: 4.688rem;
  background-image: url('https://cdn.banggooso.com/assets/images/game215/images/finish-container.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  font-size: 1.875rem;
  line-height: 2.156rem;
  color: white;
}

.current-ranking {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-direction: column;
  margin-top: 3rem;
}

.current-ranking > p:nth-child(1) {
  font-family: text;
  font-family: 'GeekbleMalang';
  font-size: 1.75rem;
  font-weight: bold;
  font-weight: 400;
  color: #503c29;
  text-align: center;
}

.rank-description,
.rank-information {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0.7rem 0 1rem 0;
  font-family: 'EliceDigitalBaeum';
  font-size: 1.375rem;
  font-weight: 400;
  color: #947754;
}

.rank-description span,
.rank-information p span {
  font-family: 'EliceDigitalBaeum-700';
  color: #503c29;
}

.filter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 12.375rem;
  height: 3.063rem;
  margin-top: 1.5rem;
  background-color: #f5f4f2;
  border-radius: 3.125rem;
}

.filter-container .text1,
.filter-container .text2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 2rem;
  font-family: 'EliceDigitalBaeum-700';
  font-size: 1.063rem;
  color: #b79b64;
  cursor: pointer;
}

.slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #f3e1ac;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 3.125rem;
}

.slider:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 6.438rem;
  height: 3.063rem;
  background-color: #7a644f;
  transition: 0.4s;
  content: '';
  border-radius: 3.125rem;
}

.slider.selected:before {
  transform: translateX(93%);
}

.selected {
  color: white !important;
}

.result-rank {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.rank-information {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.result-rank .first-place {
  position: relative;
  width: 28.25rem;
  height: 8.938rem;
  background-color: #7a644f;
}

.first-place {
  margin-top: 0.7rem;
  padding: 0.9rem 1.2rem;
}

.second-place,
.third-place {
  padding: 0.7rem 1rem;
}

.first-place img {
  position: absolute;
  top: 0;
  right: 1rem;
  width: 6.5rem;
  height: auto;
}

.first-place {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 1rem;
}

.second-place,
.third-place {
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 1rem;
}

.first-place-description {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  height: 100%;
}

.first-place-description > p {
  font-family: 'EliceDigitalBaeum';
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.715rem;
  color: white;
}

.first-place-description > span {
  font-family: 'EliceDigitalBaeum';
  font-size: 1.5rem;
  font-weight: 400;
  color: white;
  letter-spacing: normal;
}

.rank-container {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.rank-container .second-place,
.rank-container .third-place {
  position: relative;
  width: 13.75rem;
  height: 6.375rem;
  background-color: #a99377;
  border-radius: 1rem;
}

.second-place-description,
.third-place-description {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  height: 100%;
}

.second-place-description div:first-child,
.third-place-description div:first-child {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-family: 'EliceDigitalBaeum';
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
  color: white;
}

.second-place-description div:last-child,
.third-place-description div:last-child {
  font-family: 'EliceDigitalBaeum';
  font-size: 1.05rem;
  font-weight: 400;
  color: white;
  letter-spacing: normal;
}

.second-place img,
.third-place img {
  position: absolute;
  top: 0;
  right: 0.5rem;
  width: 4.5rem;
  height: auto;
}

.rest {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.rest .scrollbar {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 90%;
  height: 23rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  border: 1px solid #705c5533;
  background-color: white;
  border-radius: 1.25rem;
}

.rest .scrollbar p {
  position: absolute;
  bottom: 1rem;
  width: 100%;
  font-family: 'EliceDigitalBaeum';
  font-size: 0.938rem;
  font-weight: 400;
  color: #989898;
  text-align: center;
  letter-spacing: normal;
}

.rest .scrollbar ul {
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: auto;
  width: 95%;
  height: 19.5rem;
  font-family: 'EliceDigitalBaeum';
  font-size: 1.125rem;
  font-weight: 400;
}

.rest ul::-webkit-scrollbar {
  display: flex;
  width: 0.3rem;
}

.rest ul::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 1rem;
}

.rest ul::-webkit-scrollbar-thumb {
  height: 5rem;
  background-color: #7a644f;
  border-radius: 1rem;
}

.rest ul li {
  display: flex;
  justify-content: space-between;
  width: 95%;
  padding: 0.7rem 0.7rem 0.7rem 0.2rem;
  color: #674e37;
  text-align: center;
}

.rest ul li div {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.rest ul li div .rank-index {
  width: 1rem;
  height: 1.6rem;
}

.rest ul li div .rank-location {
  font-weight: 700;
  color: #674e37;
}

.rest ul li:not(:last-child) {
  border-bottom: 1px solid #96969633;
}

.rest p {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: #969696;
}

.rest img {
  width: 28.188rem;
  height: 4.25rem;
  margin: 2rem 0;
}

.result-middle > div {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 49.063rem;
  background-image: url('https://cdn.banggooso.com/assets/images/game215/images/result-background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.result-donation-description {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25.375rem;
  height: 24.313rem;
  background-image: url('https://cdn.banggooso.com/assets/images/game215/images/result-donation-description.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.result-donation-description p {
  margin-top: 9.25rem;
}

.game-result {
  padding: 0;
}

.result-middle div p:nth-child(1) {
  font-family: 'GeekbleMalang';
  font-size: 1.75rem;
  line-height: 2.375rem;
  color: #947754;
  text-align: center;
}

.result-middle div p:nth-child(1) span {
  color: #664f47;
}

.result-middle div .result-donation-description p {
  font-family: 'SUIT-SemiBold';
  font-size: 1.25rem;
  line-height: 1.875rem;
  color: #503c29;
}

.result-middle div .result-donation-description p span {
  font-family: 'SUIT-Bold';
  color: #503c29;
}

.result-middle div div .text_1 {
  font-family: 'GeekbleMalang';
  font-size: 1.5rem;
  line-height: 1.725rem;
  color: #947754;
  text-align: center;
}

.result-middle div div .text_2 {
  font-family: 'GeekbleMalang';
  font-size: 2rem;
  line-height: 2.3rem;
  color: #7a644f;
  text-align: center;
}

.result-middle div div .text_2 span {
  color: #503c29;
}

.result-middle div div .text_2 img {
  width: 2.5rem;
  height: auto;
}

.game-result .landing {
  width: 28.188rem;
  height: 4.75rem;
  margin: 0;
}

.game-result .landing > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  padding-bottom: 0.7rem;
  border: none;
  box-shadow: none;
  background-image: url('https://cdn.banggooso.com/assets/images/game215/images/large_button.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-family: 'GeekbleMalang';
  font-size: 1.875rem;
  line-height: 4.75rem;
  color: white;
}

.foot-container {
  width: 100%;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  background-color: #a99376;
}

/* 공유하기 */

.game-result .share-sns-list span {
  color: #2d407e;
  border-radius: 0 0 1rem 1rem;
}

.game-result .share-sns-list {
  margin: 2rem 0;
}

.share-sns-list .btn-share.kakao {
  background-image: url('https://cdn.banggooso.com/assets/images/game276/intro/share-kakao.png');
}

.share-sns-list .btn-share.twitter {
  background-image: url('https://cdn.banggooso.com/assets/images/game276/intro/share-x.png');
}

.share-sns-list .btn-share.link-copy {
  background-image: url('https://cdn.banggooso.com/assets/images/game276/intro/share-link.png');
}

/* 콘텐츠 더보기 */

.contents-more .contents-main .contents-logo img {
  width: 28%;
}

.contents-more .contents-list .game-btn {
  position: relative;
  width: 90%;
  margin: 0;
  padding: 1.5rem 1.7rem;
  border: none !important;
  border-top: 1px solid #ffffff33 !important;
  background-color: transparent !important;
  font-family: 'Pretendard-600';
  font-size: 1.2rem !important;
  font-weight: 500;
  color: #503c29;
  text-align: left;
  letter-spacing: 0.1px;
  cursor: pointer;
  border-radius: 0;
}

.contents-more .contents-list .game-btn:before {
  left: 90%;
  width: 2rem;
  height: 2rem;
  background-image: url('https://cdn.banggooso.com/assets/images/game215/images/expand_more.png');
  background-size: contain;
}

.contents-more {
  flex-direction: column;
  margin: 2.7rem 0;
  border: none;
  background: transparent;
}

.contents-more .contents-main {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 1.7rem 1.7rem 1rem 1.7rem;
}

.contents-more .contents-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 0 0.7rem 0;
  padding: 0;
  border-left: 1px solid #373c3f;
  border-left: none;
}

.contents-more .contents-list > div {
  border-top: 1px solid #373c3f;
}

.contents-more .contents-main .sub-text {
  font-family: 'Pretendard-700';
  font-size: 1.3rem;
  color: #503c29;
  text-align: left;
}

.game-result .recommend-list .inner {
  padding: 0 1rem;
}

.game-result .recommend-list .inner .title {
  margin-bottom: 0.5rem;
  padding-left: 2.7rem;
  font-size: 1.5rem;
  color: #373c3f;
}

.game-result .recommend-list:before {
  background-color: #7a644f;
}

.game-result .recommend-list .slide-box {
  height: auto;
  border: 0.4rem solid #373c3f;
}

.game-result .recommend-list .swiper-container {
  padding-bottom: 0;
}

.game-result .recommend-list .btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.game-result .page-full {
  margin: 0;
}

.dim-game-finish,
.dim-game-exit {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 1.5rem;
  background-color: #00000066;
}

.dim-game-finish p,
.dim-game-exit p {
  font-family: 'EliceDigitalBaeum';
  font-size: 1.5rem;
  font-weight: 700;
  color: #575f7b;
  text-align: center;
}

.button-container {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 0 1.5rem;
  justify-self: center;
}

.button-container .more {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 23.0625rem;
  min-height: 4.25rem;
  padding-bottom: 0.5rem;
  background: url('https://cdn.banggooso.com/assets/images/game276/game/modal-blue-btn.png') no-repeat center/cover;
  font-family: 'GeekbleMalang';
  font-size: 1.75rem;
  font-weight: 400;
  color: #fff;
  background-size: contain;
}

.button-container .done {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 23.0625rem;
  min-height: 4.25rem;
  padding-bottom: 0.5rem;
  background: url('https://cdn.banggooso.com/assets/images/game276/game_info_modal/btn.png') no-repeat center/cover;
  font-family: 'GeekbleMalang';
  font-size: 1.75rem;
  font-weight: 400;
  color: #9c927b;
  background-size: contain;
}

.game-finish,
.lottery {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 28rem;
  height: 25rem;
  background: url('https://cdn.banggooso.com/assets/images/game276/common/modal-bg.png') no-repeat center/cover;
}

.game-finish .game-finish-text {
  font-family: 'GeekbleMalang';
  font-size: 2.125rem;
  line-height: 2.375rem;
  color: #503c29;
  text-align: center;
}

.game-finish .game-finish-sub {
  padding-bottom: 1rem;
  font-family: 'EliceDigitalBaeum';
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.629rem;
  color: #7a644f;
  text-align: center;
}

.close-exit,
.close-finish,
.close-lottery {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.75rem;
  height: 1.75rem;
}

.desc_2 {
  font-family: 'EliceDigitalBaeum';
  font-size: 1.125rem;
  font-weight: 400;
  color: #947754;
}

.desc_2 span {
  font-family: 'EliceDigitalBaeum-700';
  color: #503c29;
}

.share-sns-list .list-title .countBox .countNumber {
  font-family: 'Pretendard-500';
  color: #7a644f;
  letter-spacing: normal;
}

.share-sns-list .list-title .countBox .countImg {
  background-image: url('https://cdn.banggooso.com/assets/images/game215/images/share.png');
}

.share-sns-list .btn-share {
  width: 3.114rem;
  height: 3.114rem;
}

.share-sns-list .list li + li {
  margin-left: 1rem;
}

.friend {
  width: 28.188rem;
  height: auto;
  margin: 1.5rem 0 3rem 0;
}

.go,
.stop,
.more,
.done {
  width: 23.063rem;
  height: auto;
}

.lottery-modal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000099;
}

.lottery-modal .submit {
  width: 23.063rem;
  height: auto;
}

.lottery-modal .lottery p:nth-child(1) {
  font-family: 'EliceDigitalBaeum-700';
  font-size: 1.25rem;
  line-height: 1.81rem;
  color: #7a644f;
}

.lottery-modal .lottery p:nth-child(2) {
  font-family: 'EliceDigitalBaeum';
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.448rem;
  color: #7a644f;
}

.lottery-modal .lottery .input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 23.063rem;
  height: 7.5rem;
}

.lottery-modal .lottery .input div {
  display: flex;
  align-items: center;
}

.lottery-modal .lottery .input span {
  display: flex;
  width: 4.063rem;
  font-family: 'EliceDigitalBaeum-700';
  font-size: 1.25rem;
  line-height: 1.81rem;
  color: #7a644f;
  text-align: start;
}

.lottery-modal .lottery .input input {
  width: 16.5rem;
  height: 3.375rem;
  font-family: 'EliceDigitalBaeum';
  font-size: 1.125rem;
  font-weight: 400;
  text-align: center;
  border-radius: 3.125rem;
}

.success,
.fail {
  display: none;
  align-items: center;
  justify-content: center;
}

.success img,
.fail img {
  width: 28.188rem;
  height: auto;
}

.gap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  width: 28.188rem;
  height: 4.75rem;
  padding-left: 1.5rem;
  background-color: #b79b6426;
  border-radius: 0.625rem;
}

.gap-image {
  position: absolute;
  right: 1rem;
  bottom: 0;
  width: 3.75rem;
  height: 5.313rem;
}

.front,
.back,
.equal {
  font-size: 1.125rem;
}

.app-header-btn .back {
  z-index: 50;
  pointer-events: auto;
}
.front span,
.back span {
  font-size: 1.25rem;
}

.credit-container {
  background-color: black;
}

.restart-game {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.restart-game img {
  width: 90%;
  height: auto;
}

.good-influence {
  margin-bottom: 5rem;
  font-family: 'SUIT';
  font-size: 1.125rem;
  font-weight: 400;
  color: white;
  text-align: center;
}

.game-intro .share-sns-list {
  margin: 1rem 0 !important;
}

.share-sns-list .list-title span {
  font-family: 'Pretendard';
  color: #2d407e;
}

.game-over-container {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1.75rem 2rem 1.875rem 2rem;
  width: 24.75rem;
  height: 15.25rem;
  border: 2px solid #705c5533;
  background-color: #ffffffe5;
  border-radius: 1.25rem;
}

.game-over-container .done {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 20rem;
  height: 3.85rem;
  padding-bottom: 0.5rem;
  background: url('https://cdn.banggooso.com/assets/images/game276/game_info_modal/btn.png') no-repeat center/cover;
  font-family: 'GeekbleMalang';
  font-size: 1.75rem;
  font-weight: 400;
  color: #9c927b;
}

.game-over-container p {
  font-family: 'EliceDigitalBaeum';
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.125rem;
  color: #575f7b;
  text-align: center;
}

.game-over-container img {
  width: 20.75rem;
  height: 4.25rem;
}

.bottom-container .warning {
  width: 28.25rem;
  font-family: 'EliceDigitalBaeum-700';
  font-size: 0.875rem;
  line-height: 1.267rem;
  color: #947754;
  text-align: center;
}

.bottom-container .summary {
  width: 28.25rem;
  margin: 1rem 0 4rem 0;
  font-family: 'EliceDigitalBaeum-700';
  font-size: 0.625rem;
  line-height: 0.905rem;
  color: #b79b64;
  text-align: start;
  letter-spacing: normal;
}

.cookie {
  width: 28.188rem;
  height: auto;
}

.ranking-first-place {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.875rem;
  background-color: #ffefcf;
  font-family: 'EliceDigitalBaeum';
  font-size: 1.313rem;
  font-weight: 400;
  line-height: 1.875rem;
  color: #7a644f;
}

.notice {
  padding-left: 1rem;
  font-family: 'EliceDigitalBaeum';
  font-size: 0.938rem;
  font-weight: 400;
  line-height: 1.358rem;
  color: #a99377;
}

.game-sound {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 1.75rem;
  height: 1.75rem;
  background-image: url('https://cdn.banggooso.com/assets/images/game215/images/on.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.game-sound.off {
  background-image: url('https://cdn.banggooso.com/assets/images/game215/images/off.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.animation {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.65;
}

.level-summary {
  display: flex;
  flex-direction: column;
  margin-top: 0.7rem;
  font-family: 'GongGothicMedium';
}

.level-summary > p:nth-child(1) {
  width: max-content;
  height: 1.563rem;
  padding: 0 0.5rem;
  background-color: #c1995d;
  font-size: 0.875rem;
  line-height: 1.438rem;
  color: white;
  text-align: center;
  border-radius: 0.375rem;
}

.level-summary > p:nth-child(2) {
  font-size: 0.813rem;
  font-weight: 300;
  color: #b6986c;
}

.level-summary div {
  display: flex;
  font-size: 0.813rem;
}

.level-summary div > p:nth-child(1) {
  margin-right: 0.3rem;
  color: #c1995d;
}

.tip {
  margin-top: 1rem;
  font-family: 'EliceDigitalBaeum-700';
  font-size: 1rem;
  color: #b2936d;
}

.tip span {
  color: #7a644f;
}

.goal {
  margin-top: 1rem;
  font-family: 'EliceDigitalBaeum';
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.267rem;
  color: #b2936d;
  text-align: center;
  letter-spacing: -0.0175rem;
}

/* result page */
.result-container {
  background-color: var(--background-color);
}

.result-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding-bottom: 0.9rem;
  color: #2d407e;
}

.result-title-container h2 {
  padding: 1.5rem 0;
  font-size: 1.75rem;
}

.result-title-container h3 {
  font-family: 'EliceDigitalBaeum';
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #48547e;
  text-align: center;
}

.result-title-container p {
  font-family: 'EliceDigitalBaeum';
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #575f7b;
  text-align: center;
}

/* 이미지 저장 */
.certificate-seal {
  position: absolute;
  top: 0;
  right: 0;
}

.canvas {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 70%;
}

.result-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.certificate-hanger {
  width: 22.75rem;
  height: auto;
}

.img-result-container {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  position: relative;
  z-index: 1;
  width: 22.75rem;
  height: 28.438rem;
  margin: 0 auto;
  padding: 1.6rem;
  padding-top: 4.5rem;
  background: url(https://cdn.banggooso.com/assets/images/game276/result/certificate-1.png) no-repeat center/cover;
}

.lunchbox-score-0-background {
  background: url(https://cdn.banggooso.com/assets/images/game276/result/certificate-2.png) no-repeat center/cover;
}

.image-subtitle {
  /* 형광팬 효과 */
  display: inline-block;
  position: relative;
  z-index: 1;
  font-family: 'GangwonEdu_OTFBoldA';
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 400;
  color: #5769a5;
  letter-spacing: 0.11rem;
}

.image-subtitle::before {
  position: absolute;
  bottom: 0.15em;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0.7em;
  background: #ebf9ff;
  content: '';
  border-radius: 0.2em;
}

.image-subtitle strong {
  font-weight: 700;
  color: #2d407e;
}

.info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
}

.character-image {
  width: 7.5rem;
  height: 7.5rem;
}

.info-list {
  display: flex;
  align-items: flex-start;
  flex: 1;
  flex-direction: column;
  font-family: 'GangwonEdu_OTFBoldA';
  font-size: 1.125rem;
  font-weight: 400;
  color: #5769a5;
  text-align: right;
  letter-spacing: 0.09rem;
  margin-left: 0.41rem;
}

.info-list * {
  line-height: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.info-list li {
  display: flex;
  justify-content: center;
  align-items: center;
}
.info-list .user-name {
  display: inline-block;
}

.info-list strong {
  color: #2d407e;
}

.level-container {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 6.8rem;
  padding-top: 1.25rem;
}

.level-container .level-title {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0.125rem 0.625rem 0 0.625rem;
  background: #6178c3;
  font-family: 'GongGothicMedium';
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4375rem; /* 164.286% */
  color: #fff;
  text-align: center;
  border-radius: 0.375rem;
}

.level-text-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  flex-direction: column;
  position: absolute;
  top: 2rem;
  width: 100%;
  padding: 1rem 0.375rem 0.625rem 0.375rem;
  background: rgba(239, 245, 251, 0.8);
  font-family: 'GongGothicMedium';
  font-size: 0.8125rem;
  font-weight: 300;
  color: #5769a5;
  border-radius: 0.3125rem;
}

.level-text-container span {
  font-weight: 500;
  color: #46568a;
}

.level-text-container strong {
  font-weight: 500;
  color: #5769a5;
}

.certificate-description {
  font-family: 'GangwonEdu_OTFBoldA';
  font-size: 1rem;
  font-weight: 400;
  color: #7c8bbd;
  text-align: center;
  letter-spacing: 0.08rem;
  line-height: 1.3;
}

.certificate-bottom-description {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  position: absolute;
  bottom: 0rem;
  width: 100%;
  padding: 1.25rem 1.62rem 1.9rem 1.62rem;
  font-family: 'GeekbleMalang';
  font-size: 0.9375rem;
  font-weight: 400;
  color: #b0bdc9;
}

.result-container .press-save {
  width: 100%;
  padding-top: 0.8rem;
  font-family: 'Pretendard';
  font-size: 1rem;
  font-weight: 500;
  color: #96b0ca;
  text-align: center;
  letter-spacing: -0.02338rem;
}

/* event modal */
.event-modal-potal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.event-modal-content {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  max-width: 500px;
  height: 100%;
  margin: 0 auto;
}

.event-modal-content form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  width: 27.9375rem;
  height: 30.0625rem;
  padding: 3rem 1.5rem;
  background: url(https://cdn.banggooso.com/assets/images/game276/result/event-modal-bg.png) no-repeat center/cover;
  font-family: 'EliceDigitalBaeum';
  font-weight: 400;
}

.event-modal-content form .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 1.75rem;
  height: 1.75rem;
  background: url(https://cdn.banggooso.com/assets/images/game276/result/close-btn.png) no-repeat center/cover;
  cursor: pointer;
}

.event-modal-content form > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.event-modal-content .privacy-img {
  position: absolute;
  width: 100%;
}

.event-modal-content .input-wrap {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-top: 0.87rem;
}

.privacy-image-container {
  position: relative;
  width: 100%;
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 1.75rem;
  height: 1.75rem;
  background: url(https://cdn.banggooso.com/assets/images/game276/result/close-btn.png) no-repeat center/cover;
  cursor: pointer;
}

.privacy-image-container {
  position: absolute;
  width: 100%;
}
.privacy-image {
  width: 100%;
}

.event-modal-content .text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.25rem 1rem 1.25rem;
  border: 1px solid #cbe5f2;
  background: #fff;
  font-family: 'EliceDigitalBaeum';
  font-size: 1.125rem;
  text-align: center;
  border-radius: 3.125rem;
}

.event-modal-content .text::placeholder {
  vertical-align: middle;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.5rem; /* 박스 높이에 맞게 line-height 조정 */
  color: #a8a8a8;
  text-align: center;
}

.event-modal-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #575f7b;
  text-align: center;
  margin-bottom: 0.19rem;
}

.event-modal-content .checkbox-wrap {
  display: flex;
  gap: 0.3rem;
  align-items: flex-start;
}

.event-modal-content input[type='checkbox'] {
  margin-top: 0.5rem;
}

.event-modal-content .checkbox-wrap button {
  all: inherit;
  color: #575f7b;
}

.event-modal-content .event-info {
  font-size: 0.9375rem;
  color: #575f7b;
  text-align: center;
}

.event-modal-content .event-info-detail {
  color: #575f7b;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 400;
}

.event-modal-content .event-info strong {
  font-weight: 700;
}

.event-modal-content form .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 23.3rem;
  height: 3.9rem;
  padding-bottom: 0.5rem;
  background: url(https://cdn.banggooso.com/assets/images/game276/common/btn.png) no-repeat center/cover;
  font-family: 'GeekbleMalang';
  font-size: 1.75rem;
  color: #fff;
}

/* 이벤트 모달 분기 */
.event-modal-content .event-apply-after-modal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.event-modal-content .already-applied {
  width: 28.0625rem;
  height: 15rem;
  padding: 2.25rem 2.5rem;
  background: url(https://cdn.banggooso.com/assets/images/game276/result/small-event-bg.png) no-repeat center/cover;
}
.event-modal-content .applied-success {
  width: 28.0625rem;
  height: 17rem;
  padding: 2.25rem 2.5rem;
  background: url(https://cdn.banggooso.com/assets/images/game276/result/event-modal-md.png) no-repeat center/cover;
}

.event-apply-after-modal .event-already-applied {
  padding-top: 0.8rem;
}
.event-apply-after-modal *:nth-child(1) {
  font-family: 'GeekbleMalang';
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 2.375rem; /* 111.765% */
  color: #575f7b;
  text-align: center;
}

.event-apply-after-modal *:nth-child(2) {
  font-family: 'EliceDigitalBaeum';
  font-size: 1.25rem;
  font-weight: 700;
  color: #575f7b;
}
.event-apply-after-modal *:nth-child(3) {
  font-family: 'EliceDigitalBaeum';
  font-size: 1rem;
  font-weight: 400;
  color: #575f7b;
  text-align: center;
}

.event-apply-after-modal .success-image {
  position: absolute;
  bottom: -80%;
  z-index: 10;

  width: 14.6rem;
  height: 15rem;
}

.event-modal-content .confirm-btn {
  width: 100%;
  min-height: 4.25rem;
  background: url(https://cdn.banggooso.com/assets/images/game276/result/confirm-btn.png) no-repeat center/cover;
}

.event-apply-after-modal .success-sparkler-icon-left {
  position: absolute;
  left: 1rem;
  top: 3rem;
  width: 3.75rem;
  height: 3.75rem;
  background: url(https://cdn.banggooso.com/assets/images/game276/result/sparkler_icon.png) no-repeat center/cover;
  padding-left: 1rem;
}

.event-apply-after-modal .success-sparkler-icon-right {
  position: absolute;
  right: 1rem;
  top: 3rem;
  width: 3.75rem;
  height: 3.75rem;
  background: url(https://cdn.banggooso.com/assets/images/game276/result/sparkler_icon.png) no-repeat center/cover;
  transform: scaleX(-1);
  padding-right: 1rem;
}

/* 전체 랭킹 컴포넌트 */
.result-ranking-container h4 {
  margin-bottom: 1.8rem;
  font-family: 'GeekbleMalang';
  font-size: 1.75rem;
  font-weight: 400;
  color: #2d407e;
  text-align: center;
  letter-spacing: -0.07rem;
}

.result-ranking-container {
  padding: 0 1.8rem 1.5rem;
}

.ranking-tabs {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 1.7rem;
  background-color: #cde6f8;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  border-radius: 3rem;
}

.tab-btn {
  font-size: 1.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.825rem 1.75rem 0.875rem 1.75rem;
  background: inherit;
  font-family: 'EliceDigitalBaeum';
  color: #92b5d8;
  text-align: center;
  transition: 0.4s;
  cursor: pointer;
  font-weight: 700;
}

.tab-btn.active {
  background: #2a4fa0;
  color: #fff;
  border-radius: 3rem;
}

.rank-summary {
  display: flex;
  gap: 1.7rem;
  flex-direction: column;
  width: 100%;
  font-family: 'EliceDigitalBaeum';
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #575f7b;
  text-align: center;
}

.ranking-content {
  display: flex;
  gap: 1.7rem;
  gap: 1.7rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.rank-desc-box {
  display: flex;
  align-items: flex-start;
  justify-content: start;
  align-self: stretch;
  flex-direction: column;
  padding: 0.75rem 1.25rem;
  background: #daf0ff;
  border-radius: 0.625rem;
}

.rank-desc-box img {
  position: absolute;
  top: -20%;
  right: 0.75rem;
  width: 3.75rem;
  height: 5.3125rem;
}

/* rank list */
.result-ranking-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 320px;
  max-width: 360px;
  margin: 0 auto;
  padding: 24px 0 16px 0;
  box-shadow: 0 2px 8px rgba(42, 79, 160, 0.08);
  background: #eaf6ff;
  border-radius: 16px;
}
.ranking-medal-top {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  font-family: 'EliceDigitalBaeum';
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}

.ranking-medal-score {
  font-size: 1.25rem;
  font-weight: 400;
}

.ranking-medal-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  border-radius: 1.25rem;
}

.ranking-medal-item.gold {
  flex: 1;
  background-color: #485da3;
}

.ranking-medal-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.ranking-medal-item.silver,
.ranking-medal-item.bronze {
  display: flex;
  flex: 1 1 0;
  background-color: #6898d8;
}

.ranking-medal-item.silver .ranking-medal-name,
.ranking-medal-item.bronze .ranking-medal-name {
  font-size: 1.25rem;
  max-width: 6rem;
  line-height: 1.75rem;
}

.ranking-medal-item.silver .ranking-medal-score,
.ranking-medal-item.bronze .ranking-medal-score {
  font-size: 0.875rem;
}

/* 첫 번째 요소 */
.gold .ranking-medal-img {
  width: 6.5rem;
  height: 8.9375rem;
  background: url('https://cdn.banggooso.com/assets/images/game276/result/gold.png') no-repeat center/cover;
}

/* 두 번째 요소 */
.silver .ranking-medal-img {
  width: 4.5rem;
  height: 6.1875rem;
  background: url('https://cdn.banggooso.com/assets/images/game276/result/silver.png') no-repeat center/cover;
}

.bronze .ranking-medal-img {
  width: 4.5rem;
  height: 6.1875rem;
  background: url('https://cdn.banggooso.com/assets/images/game276/result/bronze.png') no-repeat center/cover;
}

.ranking-list-scroll {
  overflow-y: auto;
  width: 100%;
  height: 23rem;
  margin-top: 1rem;
  padding: 0.75rem 2.25rem 0.75rem 0.75rem;
  border: 1px solid #cbe5f2;
  background: linear-gradient(180deg, #fff 0%, #fff 15.76%);
  border-radius: 1.25rem;
}

.ranking-list-scroll ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ranking-list-scroll li {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  align-self: stretch;
  padding: 0.75rem 1.75rem 1rem 1rem;
  border-bottom: 1px solid #f6f6f6;
  font-family: 'EliceDigitalBaeum';
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  color: #575f7b;
}

.ranking-list-scroll .rank-num {
  width: 2rem;
}

.ranking-list {
  width: 100%;
}

.ranking-list-scroll .rank-name {
  flex: 1;
}

.ranking-list-scroll li:last-child {
  border-bottom: none;
}

.ranking-list-scroll-tip {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 4.0625rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 27.69%);
  font-family: 'EliceDigitalBaeum';
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #989898;
  text-align: center;
  cursor: pointer;
  border-radius: 0 0 1.2rem 1.2rem;
}

.invite-btn-1 {
  width: 100%;
  height: 4.5rem;
  padding: 1rem 1.25rem 1.5rem 1.25rem;
  background: url(https://cdn.banggooso.com/assets/images/game276/result/result-btn.png) no-repeat center/cover;
  font-family: 'GeekbleMalang';
  font-size: 1.5rem;
  font-weight: 400;
  color: #9c927b;
}

.invite-btn-2 {
  width: 100%;
  height: 4.5rem;
  padding: 1rem 1.25rem 1.5rem 1.25rem;
  background: url(https://cdn.banggooso.com/assets/images/game276/result/result-btn-2.png) no-repeat center/cover;
  font-family: 'GeekbleMalang';
  font-size: 1.5rem;
  font-weight: 400;
  color: #9c927b;
}

.brand-explanation {
  padding: 3.13rem 2.19rem;
  background: url(https://cdn.banggooso.com/assets/images/game276/result/result-bg.png) no-repeat top,
    url(https://cdn.banggooso.com/assets/images/game276/result/result-bg-2.png) no-repeat bottom;
  background-color: #cae7ff;
  background-size: 31.25rem 8rem;
}

.brand-explanation h4 {
  padding-bottom: 1.19rem;
  font-family: 'GeekbleMalang';
  font-size: 1.6875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.375rem; /* 140.741% */
  color: #46568a;
  text-align: center;
}

.brand-explanation button {
  display: inline-block;
  width: 27.018rem;
  height: 5.8125rem;
  padding-bottom: 0.5rem;
  background: url(https://cdn.banggooso.com/assets/images/game276/result/big-btn.png) no-repeat center/cover;
  font-family: 'GeekbleMalang';
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.125rem; /* 121.429% */
  color: #fff;
  text-align: center;
}

.brand-explanation img {
  width: 100%;
  padding-bottom: 3rem;
}

.event-container {
  display: flex;
  gap: 1.13rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 31.25rem;
  height: 41.25rem;
  padding: 1.8rem 1.5rem;
  position: relative;
}

.event-container-bg {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.event-container .event-period {
  font-family: 'EliceDigitalBaeum';
  font-size: 0.875rem;
  font-weight: 700;
  color: #575f7b;
  text-align: center;
}

.event-container img {
  width: 100%;
}

.event-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: 'GeekbleMalang';
  font-size: 2rem;
  color: #8ac5dd;
}

.event-title span:nth-child(2) {
  color: #2d407e;
}

.event-btn {
  width: 28.1875rem;
  height: 4.5rem;
  z-index: 2;
  background: url(https://cdn.banggooso.com/assets/images/game276/result/event-btn.png) no-repeat center/cover;
}

.donation-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 1.5rem;
  background-color: #ebf9ff;
}

.donation-container h4 {
  padding: 2.31rem 2.38rem 1.19rem 2.94rem;
  font-family: 'GeekbleMalang';
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.625rem; /* 131.25% */
  color: #2d407e;
  text-align: center;
}

.donation-container *:nth-child(3) {
  margin-bottom: 1.6rem;
}

.donation-container *:nth-child(4) {
  margin-bottom: 2.1rem;
}
.donation-container *:nth-child(5) {
  margin-bottom: 0.87rem;
}

.donation-container *:nth-child(7) {
  width: 100%;
}

.donation-container img {
  width: 100%;
}

.donation-container .restart-btns {
  background-color: transparent;
}

.donation-container .result-btns {
  all: unset;
  width: 28.1875rem;
  height: 4.5rem;
}
.cookie-btn {
  all: unset;
  padding-bottom: 2.5rem;
  z-index: 10;
  position: relative;
}

.cradit-section {
  position: relative;
}

.credit-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  height: 0rem;
  background-color: black;
  transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.credit-container .credit {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 90%;
  padding: 6rem 0;
}

.credit-top-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: black;
}

.credit-top-container .credit-top {
  width: 27.25rem;
  height: auto;
}

.credit-container .credit .thanks {
  width: 100%;
  margin-bottom: 4rem;
  font-family: 'SUIT-Bold';
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: white;
  text-align: start;
}

.credit-container .credit .desc {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 9.625rem;
  margin: 1rem 0 2rem 0;
}

.credit-container .credit .desc ul {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.credit-container .credit .desc ul li {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 100%;
}

.credit-container .credit .desc ul li p:nth-child(1) {
  width: 7.438rem;
  font-family: 'SUIT-Bold';
  font-size: 1.125rem;
  color: white;
  text-align: end;
}

.credit-container .credit .desc ul li p:nth-child(2) {
  font-family: 'SUIT-SemiBold';
  font-size: 1.125rem;
  color: #ffffffcc;
  text-align: start;
}

.credit-container .credit .desc img {
  width: 10.838rem;
  height: 9.375rem;
  transform: translateX(1rem);
}

.credit-container .credit .message {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin: 5rem 0;
}

.credit-container .credit .message .credit-message {
  width: 9.375rem;
  height: auto;
}

.credit-container .credit .message p {
  margin: 2rem 0 1rem 0;
  font-family: 'SUIT';
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375rem;
  color: white;
  text-align: center;
}

.credit-container .credit .message .happy-alliance {
  width: 16.563rem;
  height: auto;
}

.contents-more-below {
  width: 27.25rem;
  height: auto;
  margin-bottom: 2.5rem;
}

.credit-logo {
  width: 100%;
  height: auto;
}

.cradit {
  height: 100%;
}

.round-box {
  position: absolute;
  bottom: 0;
  z-index: 10;
  width: 100%;
  height: 2.5rem;
  background-color: var(--background-color);
  border-radius: 1.875rem 1.875rem 0 0;
}

.up-img {
  position: relative;
  z-index: 10;
  width: 1rem;
  height: 1.3rem;
  margin-top: 2.75rem;
  background: url(https://cdn.banggooso.com/assets/images/game276/result/up.png) no-repeat center / cover;
}

.up-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 2rem;
}
