@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

body {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: rgb(9, 166, 251);
  font-family: sans-serif;
  color: #fff;
  border-color: #aaa;
  transition: background 0.5s;
}

.Container {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

article {
  position: absolute;
  border-style: none;
  border-color: inherit;
  z-index: 5;
  transition: opacity 0.5s;
}

.text {
  font-family: "Noto Sans KR";
  border-style: none;
  margin-top: 120px;
  margin-left: 570px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2rem;
  width: 1000px;
  height: 594px;
  border: none;
  background-color: rgba(0, 0, 0, 0);
}

article div.iframe {
  overflow: hidden;
  border: inherit;
  border-width: 0;
}

.map {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.5s;
  overflow: hidden;
  padding: 1px;
}

.minimap {
  position: fixed;
  top: 5px;
  left: 5px;
  z-index: 1000; /* 다른 요소 위에 표시되도록 설정 */
  width: 400px;
  height: 400px;
  background-color: none;
  margin-bottom: 10px;
  justify-content: center;
  color: white;
  font-size: 0.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#red-dot {
  background-color: red;
}

.mapIcon {
  position: absolute;
  border: 2px dotted white !important;
  box-shadow: 0vh 0vh 15px rgba(0, 0, 0, 0.4509803922);
  background-color: rgba(228, 226, 226, 0.7019607843) !important;
  pointer-events: all;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

.minimap-letter {
  font-size: 1.6rem;
  color: black;
}

#slider-container {
  position: absolute;
  z-index: 10;
  right: 10%;
  top: 10%;
}

#zoomSlider {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 15px;
}

#zoomSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
}

/* 아래 표시 전까지 채팅 박스 관련*/
.messageContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  display: flex;
  flex-direction: column;
  padding: 8px;
  padding-bottom: 0px;
  padding-left: 25px;
  box-sizing: border-box;
  overflow: scroll;
}

.chatbox {
  position: absolute;
  background: #fff;
  border-width: 2px;
  border-style: solid;
  border-color: inherit;
  z-index: 5;
  transition: opacity 0.5s;
}

.nicknameInputContainer {
  top: 620px;
  font-size: 30px;
  font-family: "Rubik Beastly", cursive;
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 98%;
  height: 30px;
  background: #eee;
  border-top: 1px solid #999;
  padding: 8px;
}

.nicknameInput {
  height: 25px;
}

.chatboxControlls {
  font-family: "Noto Sans KR";
  font-size: 1.1rem;
  position: absolute;
  width: 100%;
  height: 60px;
  left: 0;
  bottom: 0;
  z-index: 10;
  background: #eee;
  border-top: 1px solid #999;
}

.chatboxInput {
  position: absolute;
  left: 5px;
  bottom: 5px;
  height: 40px;
  width: 680px;
  border-radius: 15px;
  border: 1px solid #999;
  background: #fff;
  padding-left: 20px;
  padding-right: 10px;
}

.chatboxButton {
  position: absolute;
  right: 10px;
  bottom: 5px;
  width: 60px;
  height: 45px;
  background: #fff;
  border: 1px solid #999;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  color: #333;
  box-sizing: border-box;
  font-size: 20px;
  line-height: 0px;
}

.chatMessage {
  font-family: "Noto Sans KR";
  font-size: 1.1rem;
  line-height: 1.6rem;
  padding-bottom: 10px;
  position: relative;
}

.chatMessage .delete {
  position: absolute;
  top: 0;
  right: 0;
  text-shadow: 0 0 3px #fff;
  cursor: pointer;
}

.avatarHeader {
  position: absolute;
  left: -20px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-right: 6px;
  background: radial-gradient(rgb(255, 252, 83), rgb(255, 68, 230));
}

/*여기까지 채팅박스*/
/*맵 배경에 모양 변경하는 거*/
article.shape, .mapIcon.shape {
  border: none;
}

article.shape.circle, .mapIcon.shape.circle {
  border-radius: 50%;
}

/*맵배경 모양 변경 여까지*//*# sourceMappingURL=style.css.map */