#invite-friend {
  background-image: url(image/common/Bg.jpg);
}

#invite-friend-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

#invite-friend-invite {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#invite-friend-copy-code-btn {
  background-image: url(image/MainBtn_CopyCode.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

#invite-friend-accept-invite {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#invite-friend-paste-code-btn {
  background-image: url(image/MainBtn_PasteCode.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

#input-invite-code-dialog {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  /* display: flex; */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

#input-invite-code-dialog-close-btn {
  position: absolute;
  top: calc(50% - 42vw);
  left: calc(50% + 32vw);
  z-index: 1010;
  width: 9vw;
  height: 9vw;
  cursor: pointer;
  background-image: url(image/common/Btn_Close.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0);
  border: 0px;
}

#input-invite-code-dialog-panel {
  width: 100vw;
  height: 70vw;
  background: rgba(0, 0, 0, 0);
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
}

#input-invite-code-dialog-panel-title {
  display: flex;
  justify-content: space-between;
  font-size: min(4.5vw, 40px);
  line-height: min(4.5vw, 40px);
  color: #5d5045;
  width: 85%;
  margin-top: min(2vw, 30px);
}

#input-invite-code-dialog-input-row {
  width: 80%;
  height: 10vw;
  max-height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: min(15vw, 110px);
}

#input-invite-code-dialog-input-row span {
  font-size: min(3vw, 26px);
  color: #886e55;
}

#input-invite-code-dialog-input-root {
  width: 72%;
  height: 100%;
  display: grid;
}

#input-invite-code-dialog-input-bg {
  width: 100%;
  height: 100%;
  grid-area: 1 / 1;
}

#input-invite-code-dialog-input {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
  padding-left: 5vw;
  line-height: 100%;
  grid-area: 1 / 1;
  border: none;
  outline: none;
  font-size: min(3vw, 26px);
  line-height: min(3vw, 26px);
  color: #6b584a;
}

#input-invite-code-dialog-confirm-btn {
  background-image: url(image/MainBtn_Confirm.png);
  width: 30vw;
  max-width: 300px;
  height: 10.21vw;
  max-height: 102.1px;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  margin-top: calc(50% - 30vw);
}